.vscode-window {
    background: #1e1e1e;
    border: 1px solid #464647;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    width: 100%;
}

.vscode-titlebar {
    background: #323233;
    height: 30px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2d2d30;
    user-select: none;
}

.titlebar-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.window-icon {
    padding: 0 12px;
    color: #ffffff;
    font-size: 14px;
}

.titlebar-menu {
    display: flex;
    gap: 0;
}

.menu-item {
    color: #cccccc;
    font-size: 13px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 3px;
}

.menu-item:hover {
    background: #464647;
    color: #ffffff;
}

.titlebar-center {
    flex: 2;
    text-align: center;
}

.window-title {
    color: #cccccc;
    font-size: 12px;
    font-weight: 400;
}

.titlebar-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.window-controls {
    display: flex;
}

.control-btn {
    width: 45px;
    height: 30px;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: background-color 0.2s ease;
}

.control-btn:hover {
    background: #464647;
}

.control-btn.close:hover {
    background: #e81123;
    color: #ffffff;
}

.control-btn.minimize i {
    font-size: 8px;
}

.control-btn.maximize i {
    font-size: 9px;
}

.control-btn.close i {
    font-size: 10px;
}

.vscode-tabs {
    background: #2d2d30;
    display: flex;
    border-bottom: 1px solid #2d2d30;
    min-height: 35px;
    align-items: flex-end;
}

.tab {
    background: #2d2d30;
    color: #969696;
    padding: 8px 16px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    border-right: 1px solid #252526;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    min-width: 120px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.tab.active {
    background: #1e1e1e;
    color: #ffffff;
    border-bottom: 2px solid #007acc;
}

.tab:hover:not(.active) {
    background: #37373d;
    color: #ffffff;
}

.tab i {
    font-size: 12px;
}

.tab-close {
    margin-left: auto;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-size: 14px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.tab:hover .tab-close {
    opacity: 1;
}

.tab-close:hover {
    background: #656565;
}

.tab-spacer {
    flex: 1;
    background: #2d2d30;
}

.vscode-content {
    display: flex;
    height: 550px;
}

.vscode-sidebar {
    width: 175px;
    background: #252526;
    border-right: 1px solid #2d2d30;
    padding: 0;
}

.sidebar-header {
    color: #cccccc;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    background: #252526;
    border-bottom: 1px solid #2d2d30;
}

.sidebar-actions {
    margin-left: auto;
    display: flex;
    gap: 4px;
}

.sidebar-actions i {
    font-size: 14px;
    padding: 4px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.sidebar-actions i:hover {
    background: #37373d;
}

.file-tree {
    padding: 4px 0;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 16px 3px 8px;
    color: #cccccc;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-height: 22px;
}

.file-item:hover {
    background: #2a2d2e;
}

.file-item.active {
    background: #37373d;
    color: #ffffff;
}

.file-item i {
    font-size: 12px;
    width: 14px;
    flex-shrink: 0;
}

.file-item.folder i:first-child {
    color: #cccccc;
}

.file-item.folder i:nth-child(2) {
    color: #dcb67a;
}

.file-item.folder.expanded i:first-child {
    transform: rotate(90deg);
}

.file-item.file i {
    color: #519aba;
}

.vscode-editor {
    flex: 1;
    background: #1e1e1e;
    display: flex;
    flex-direction: column;
}

.editor-header {
    background: #1e1e1e;
    padding: 6px 16px;
    border-bottom: 1px solid #2d2d30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 28px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #969696;
    font-size: 12px;
}

.breadcrumb-item {
    color: #cccccc;
}

.breadcrumb i {
    font-size: 8px;
}

.editor-actions {
    display: flex;
    gap: 8px;
    color: #cccccc;
}

.editor-actions i {
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.editor-actions i:hover {
    background: #37373d;
}

.code-editor {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.line-numbers {
    background: #1e1e1e;
    color: #858585;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    padding: 16px 12px;
    text-align: right;
    user-select: none;
    border-right: 1px solid #2d2d30;
    min-width: 10px;
}

.line-number {
    display: block;
    height: 22px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.line-number:hover {
    color: #cccccc;
}

.code-content {
    flex: 1;
    padding: 16px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #d4d4d4;
    overflow-x: auto;
}

/* Enhanced syntax highlighting */
.comment {
    color: #6a9955;
    font-style: italic;
}

.vscode-statusbar {
    background: #007acc;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    font-size: 12px;
    color: #ffffff;
}

.statusbar-left, .statusbar-right {
    display: flex;
    gap: 12px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 0 6px;
    height: 22px;
    transition: background-color 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-blue: #2563eb;
    --dark-blue: #1e40af;
    --light-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding-top: 70px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    margin-top: 0px;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-visual {
    animation: slideInRight 1s ease;
}
.vscode-titlebar {
    background: #323233;
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid #2d2d30;
}

.titlebar-controls {
    display: flex;
    gap: 8px;
    margin-right: auto;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.control.close {
    background: #ff5f56;
}

.control.minimize {
    background: #ffbd2e;
}

.control.maximize {
    background: #27ca3f;
}

.titlebar-title {
    color: #cccccc;
    font-size: 13px;
    font-weight: 400;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.titlebar-menu {
    display: flex;
}

.menu-item {
    color: #cccccc;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.menu-item:hover {
    color: #ffffff;
}

.vscode-tabs {
    background: #2d2d30;
    display: flex;
    border-bottom: 1px solid #2d2d30;
}

.tab {
    background: #2d2d30;
    color: #969696;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    border-right: 1px solid #2d2d30;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    min-width: 120px;
}

.tab.active {
    background: #1e1e1e;
    color: #ffffff;
}

.tab:hover {
    background: #37373d;
    color: #ffffff;
}

.tab i {
    font-size: 12px;
}

.tab-close {
    margin-left: auto;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-size: 14px;
}

.tab:hover .tab-close {
    opacity: 1;
}

.tab-close:hover {
    background: #656565;
    border-radius: 2px;
}

.sidebar-header {
    color: #cccccc;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 16px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.file-tree {
    padding-left: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 16px 2px 12px;
    color: #cccccc;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.file-item:hover {
    background: #2a2d2e;
}

.file-item.active {
    background: #37373d;
    color: #ffffff;
}

.file-item i {
    font-size: 12px;
    width: 16px;
}

.file-item.folder i {
    color: #dcb67a;
}

.file-item.file i {
    color: #519aba;
}

.vscode-editor {
    flex: 1;
    background: #1e1e1e;
    display: flex;
    flex-direction: column;
}

.editor-header {
    background: #1e1e1e;
    padding: 8px 16px;
    border-bottom: 1px solid #2d2d30;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #969696;
    font-size: 12px;
}

.breadcrumb-item {
    color: #cccccc;
}

.breadcrumb i {
    font-size: 10px;
}

.code-editor {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.line-number {
    display: block;
    height: 22px;
}

.code-content {
    flex: 1;
    padding: 16px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #d4d4d4;
    overflow-x: auto;
}

.vscode-statusbar {
    background: #007acc;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    font-size: 12px;
    color: #ffffff;
}

.statusbar-left, .statusbar-right {
    display: flex;
    gap: 16px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 0 4px;
    transition: background-color 0.2s ease;
}

.status-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.keyword { color: #c084fc; }
.class-name { color: #60a5fa; }
.method { color: #34d399; }
.string { color: #fbbf24; }
.number { color: #fb7185; }

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}
.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.highlight-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-item p {
    color: var(--text-light);
    margin: 0;
}

/* Experience Section */
.experience {
    background: var(--bg-light);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-blue);
}

.timeline-header {
    margin-bottom: 1rem;
}

.timeline-header h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.company {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.duration {
    color: var(--text-light);
    font-size: 0.9rem;
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.timeline-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* Skills Section */
.skills {
    background: var(--white);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-category {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.skill-header {
    margin-bottom: 1.5rem;
}

.skill-header i {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.skill-header h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.contact-details h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.contact-cta {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-cta h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1050px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: 5px;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vscode-content {
        height: 550px;
    }

    .vscode-sidebar {
        width: 165px;
    }

    .titlebar-menu {
        display: none;
    }

    .titlebar-title {
        position: static;
        transform: none;
        margin-left: 20px;
    }

    .code-content {
        font-size: 12px;
        padding: 12px;
        text-align: left;
    }

    .line-numbers {
        font-size: 12px;
        padding: 12px 6px;
    }

    .tab {
        min-width: 80px;
        padding: 6px 12px;
        font-size: 12px;
    }

    .file-item {
        font-size: 12px;
    }
}
/* anything smaller than tablet */
@media (max-width: 767px) {
    .hero-visual{
        display: none;
    }
    
    
    .titlebar-controls {
        gap: 6px;
    }

    .control {
        width: 10px;
        height: 10px;
    }

    .tab {
        min-width: 60px;
        padding: 4px 8px;
        font-size: 11px;
    }


    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .highlight-item {
        padding: 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .skill-category {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-cta {
        padding: 1.5rem;
    }
}