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

body {
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header Styles */
#header {
    text-align: center;
    /* Remove padding to allow content to sit higher over the image */
    padding: 0;
    position: relative;
}

#header-info {
    /* Position the site titles over the header image */
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 11;
    text-align: center;
}

.site-info {
    margin-bottom: 20px;
}

.site-title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    /* White text for contrast */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(0, 0, 0, 0.4);
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

.site-title a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

.site-description {
    font-size: 1.1rem;
    color: #fff;
    /* White text for contrast */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(0, 0, 0, 0.4);
    font-style: italic;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
    letter-spacing: 0.5px;
}

/* Custom Header Image with Angular Separator */
#custom-header {
    background-image: url("/static/images/cropped-IMG_0194.jpg");
    background-size: cover;
    background-position: center;
    height: 800px;
    /* Increased from 400px to cover more area behind photo */
    position: relative;
    z-index: 5;
    /* Steeper diagonal clip-path for more dramatic angle */
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 90%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 90%);
}

#custom-header::after {
    content: none;
}

/* Logo Section (Profile Image and Circular Icons) */
.site-logo {
    text-align: center;
    padding: 0;
    /* Pull profile image up over the header background with much more spacing */
    margin-top: -350px;
    position: relative;
    z-index: 10;
    background-color: transparent;
}

.custom-logo {
    height: 351px !important;
    width: 351px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Navigation container for the social menu (circular icons) */
.site-logo nav {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Simple centering - no complex transforms */
    transform: translate(-50%, -50%);
    z-index: 20;
    pointer-events: none;
}

.site-logo nav .social-menu {
    margin: 0;
    padding: 0;
    width: 360px;
    height: 360px;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 80px 2rem;
    /* Added bottom padding to prevent footer overlap */
    overflow-x: hidden;
}

.entry-content {
    text-align: center;
    padding: 4rem 0;
    min-height: 400px;
}

/* Name Boxes Styling */
.name-boxes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
    padding: 0 20px;
}

.name-box-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.name-box {
    width: 100px;
    height: 60px;
    background-color: #f8f8f8;
    border: 2px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
    font-size: 0.9rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
}

.name-box:hover {
    background-color: #e8e8e8;
    border-color: #d0d0d0;
    transform: translateY(-2px);
}

.name-box span {
    display: block;
    line-height: 1.2;
}

/* Custom Footer - Minimal Design */
.custom-footer {
    background: #f0f0f0;
    border-top: 1px solid #eaeaea;
    margin-top: 1rem;
    padding: 0.3rem 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.footer-social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    transform: translateY(-2px);
}

/* Brand-specific hover colors for footer social icons */
.footer-social-icons a:nth-child(1):hover {
    background: #1877f2;
    /* Facebook */
}

.footer-social-icons a:nth-child(2):hover {
    background: #0077b5;
    /* LinkedIn */
}

.footer-social-icons a:nth-child(3):hover {
    background: #333333;
    /* GitHub */
}

.footer-social-icons a:nth-child(4):hover {
    background: #f48024;
    /* Stack Overflow */
}

.footer-social-icons a:nth-child(5):hover {
    background: #1da1f2;
    /* Twitter */
}

.footer-social-icons a:nth-child(6):hover {
    background: linear-gradient(45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%);
    /* Instagram */
}

.footer-social-icons a:nth-child(7):hover {
    background: #ff0000;
    /* YouTube */
}

.footer-social-icons a:nth-child(8):hover {
    background: #00ae42;
    /* MakersWorld */
}

.footer-social-icons a i {
    font-size: 1rem;
}

o

/* Professional Summary Styles */
.professional-summary {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.summary-content {
    text-align: center;
}

.summary-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

.summary-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 2rem;
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

.summary-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 10px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #3498db;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

.summary-location {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 10px;
    border-left: 4px solid #2ecc71;
}

.summary-location i {
    font-size: 1.2rem;
    color: #2ecc71;
    margin-right: 0.5rem;
}

.summary-location span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

/* Mobile Responsive Styles for Professional Summary */
@media (max-width: 768px) {
    .professional-summary {
        margin: 1rem;
        padding: 1.5rem;
    }

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

    .summary-description {
        font-size: 1.1rem;
    }

    .summary-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-item {
        padding: 0.8rem;
    }

    .highlight-item i {
        font-size: 1.3rem;
        width: 25px;
    }

    .highlight-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .professional-summary {
        margin: 0.5rem;
        padding: 1rem;
    }

    .summary-title {
        font-size: 1.8rem;
    }

    .summary-description {
        font-size: 1rem;
    }

    .highlight-item {
        padding: 0.6rem;
    }

    .highlight-item i {
        font-size: 1.2rem;
        width: 20px;
    }

    .highlight-item span {
        font-size: 0.85rem;
    }
}

/* Work History Styles */
.work-history {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.work-history-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

.work-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.work-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.work-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.15);
}

.work-item:nth-child(2) {
    border-left-color: #e74c3c;
}

.work-item:nth-child(3) {
    border-left-color: #2ecc71;
}

.work-company {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.work-company i {
    font-size: 1.3rem;
    color: #3498db;
    margin-right: 0.8rem;
    width: 25px;
    text-align: center;
}

.work-item:nth-child(2) .work-company i {
    color: #e74c3c;
}

.work-item:nth-child(3) .work-company i {
    color: #2ecc71;
}

.work-company span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

.work-position {
    font-size: 1.1rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 0.5rem;
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

.work-dates {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #3498db;
    font-weight: 600;
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

.work-dates i {
    font-size: 0.85rem;
    color: #3498db;
    margin-right: 0.5rem;
    width: 15px;
    text-align: center;
}

.work-location {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

.work-location i {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-right: 0.5rem;
    width: 15px;
    text-align: center;
}

.work-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

/* Mobile Responsive Styles for Work History */
@media (max-width: 768px) {
    .work-history {
        margin: 1rem;
        padding: 1.5rem;
    }

    .work-history-title {
        font-size: 1.8rem;
    }

    .work-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .work-item {
        padding: 1.2rem;
    }

    .work-company span {
        font-size: 1.2rem;
    }

    .work-position {
        font-size: 1rem;
    }

    .work-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .work-history {
        margin: 0.5rem;
        padding: 1rem;
    }

    .work-history-title {
        font-size: 1.6rem;
    }

    .work-timeline {
        gap: 1rem;
    }

    .work-item {
        padding: 1rem;
    }

    .work-company i {
        font-size: 1.1rem;
        width: 20px;
    }

    .work-company span {
        font-size: 1.1rem;
    }

    .work-position {
        font-size: 0.95rem;
    }

    .work-description {
        font-size: 0.85rem;
    }
}

/* Responsive Design - Updated 2025-01-17 */
/* Specific breakpoints for Surface Duo and iPad Mini only */
/* Surface Duo: 540x720 */
@media (width: 540px) and (height: 720px) {

    /* Force update - 2025-01-17 */
    .social-icons li {
        width: 40px !important;
        height: 40px !important;
    }

    .social-icons a {
        width: 40px !important;
        height: 40px !important;
    }

    .site-logo {
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        height: 250px !important;
        max-height: 250px !important;
        min-height: 250px !important;
    }

    .site-logo nav .social-menu {
        width: 250px !important;
        height: 250px !important;
        overflow: hidden !important;
        max-width: 250px !important;
        max-height: 250px !important;
        min-width: 250px !important;
        min-height: 250px !important;
    }

    :root {
        --icon-radius: 99px;
        --icon-size: 20px;
    }

    .main-social-circle .social-icons li:nth-child(1) {
        transform: translate(26px, -79px) !important;
    }

    .main-social-circle .social-icons li:nth-child(2) {
        transform: translate(96px, -50px) !important;
    }

    .main-social-circle .social-icons li:nth-child(3) {
        transform: translate(125px, 20px) !important;
    }

    .main-social-circle .social-icons li:nth-child(4) {
        transform: translate(96px, 90px) !important;
    }

    .main-social-circle .social-icons li:nth-child(5) {
        transform: translate(26px, 119px) !important;
    }

    .main-social-circle .social-icons li:nth-child(6) {
        transform: translate(-44px, 90px) !important;
    }

    .main-social-circle .social-icons li:nth-child(7) {
        transform: translate(-73px, 20px) !important;
    }

    .main-social-circle .social-icons li:nth-child(8) {
        transform: translate(-44px, -50px) !important;
    }
}

/* iPad Mini: 768x1024 */
@media (width: 768px) and (height: 1024px) {

    /* Force update - 2025-01-17 */
    .social-icons li {
        width: 40px !important;
        height: 40px !important;
    }

    .social-icons a {
        width: 40px !important;
        height: 40px !important;
    }

    .site-logo {
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        height: 250px !important;
        max-height: 250px !important;
        min-height: 250px !important;
    }

    .site-logo nav .social-menu {
        width: 250px !important;
        height: 250px !important;
        overflow: hidden !important;
        max-width: 250px !important;
        max-height: 250px !important;
        min-width: 250px !important;
        min-height: 250px !important;
    }

    :root {
        --icon-radius: 99px;
        --icon-size: 20px;
    }

    .main-social-circle .social-icons li:nth-child(1) {
        transform: translate(26px, -79px) !important;
    }

    .main-social-circle .social-icons li:nth-child(2) {
        transform: translate(96px, -50px) !important;
    }

    .main-social-circle .social-icons li:nth-child(3) {
        transform: translate(125px, 20px) !important;
    }

    .main-social-circle .social-icons li:nth-child(4) {
        transform: translate(96px, 90px) !important;
    }

    .main-social-circle .social-icons li:nth-child(5) {
        transform: translate(26px, 119px) !important;
    }

    .main-social-circle .social-icons li:nth-child(6) {
        transform: translate(-44px, 90px) !important;
    }

    .main-social-circle .social-icons li:nth-child(7) {
        transform: translate(-73px, 20px) !important;
    }

    .main-social-circle .social-icons li:nth-child(8) {
        transform: translate(-44px, -50px) !important;
    }
}

/* Custom breakpoints for Surface Duo and iPad Mini */
@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
    }

    .custom-logo {
        height: 200px !important;
        width: 200px !important;
    }

    #custom-header {
        height: 300px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        min-width: 100%;
    }

    .entry-content {
        padding: 2rem 0;
        overflow-x: hidden;
    }

    .container {
        padding: 1rem 1rem 80px 1rem;
        overflow-x: hidden;
    }

    /* Mobile layout fixes - prevent text overlap with profile photo */
    #header-info {
        top: 28% !important;
    }

    .social-icons {
        width: 200px !important;
        height: 200px !important;
    }

    .site-logo {
        margin-top: -110px !important;
        height: 150px !important;
        overflow: visible;
    }

    .site-logo nav .social-menu {
        width: 200px !important;
        height: 200px !important;
        overflow: hidden;
    }

    /* Ensure footer icons maintain proper aspect ratio on mobile */
    .custom-footer {
        padding: 0.3rem 15px;
    }

    .footer-social-icons {
        gap: 10px;
    }

    .footer-social-icons a {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.5rem;
    }

    .site-description {
        font-size: 1rem;
    }

    .custom-logo {
        height: 150px !important;
        width: 150px !important;
    }

    .social-icons {
        width: 150px;
        height: 150px;
    }

    .social-icons a {
        width: 40px !important;
        height: 40px !important;
    }

    /* Mobile-specific list item sizing */
    .social-icons li {
        width: 40px !important;
        height: 40px !important;
    }

    /* Override CSS variables for mobile to restore original sizes */
    :root {
        --icon-radius: 75px;
        --icon-size: 25px;
    }

    /* Ensure background image covers full width on small mobile */
    #custom-header {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    /* Mobile-specific icon positioning overrides - 0px 0px is center of portrait photo */
    .main-social-circle .social-icons li:nth-child(1) {
        transform: translate(0px, -75px) !important;
        /* Top */
    }

    .main-social-circle .social-icons li:nth-child(2) {
        transform: translate(53px, -53px) !important;
        /* Top-right */
    }

    .main-social-circle .social-icons li:nth-child(3) {
        transform: translate(75px, 0px) !important;
        /* Right */
    }

    .main-social-circle .social-icons li:nth-child(4) {
        transform: translate(53px, 53px) !important;
        /* Bottom-right */
    }

    .main-social-circle .social-icons li:nth-child(5) {
        transform: translate(0px, 75px) !important;
        /* Bottom */
    }

    .main-social-circle .social-icons li:nth-child(6) {
        transform: translate(-53px, 53px) !important;
        /* Bottom-left */
    }

    .main-social-circle .social-icons li:nth-child(7) {
        transform: translate(-75px, 0px) !important;
        /* Left */
    }

    .main-social-circle .social-icons li:nth-child(8) {
        transform: translate(-53px, -53px) !important;
        /* Top-left */
    }

    .custom-footer {
        padding: 0.3rem 10px;
    }

    .footer-social-icons {
        gap: 8px;
    }

    .footer-social-icons a {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        flex-shrink: 0;
    }

    /* Additional mobile layout fixes for very small screens */
    #header-info {
        top: 25% !important;
    }

    .social-icons {
        width: 200px !important;
        height: 200px !important;
    }

    .site-logo {
        margin-top: -30px !important;
        height: 150px !important;
        overflow: visible;
    }

    .site-logo nav .social-menu {
        width: 200px !important;
        height: 200px !important;
        overflow: hidden;
    }
}

/* Two-column layout for desktop only */
.experience-skills-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.experience-column .work-history {
    margin: 0;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.skills-column .skills-section {
    margin: 0;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.skills-column .projects-section {
    margin: 2rem 0 0 0;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

/* Override the individual section styles when in columns */
.experience-skills-container .work-history,
.experience-skills-container .skills-section {
    max-width: none;
    margin: 0;
}

/* Skills Section Styles */
.skills-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.skills-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

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

.skills-column .skill-category {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1rem;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.15);
}

.skill-category:nth-child(2) {
    border-left-color: #e74c3c;
}

.skill-category:nth-child(3) {
    border-left-color: #2ecc71;
}

.skill-category:nth-child(4) {
    border-left-color: #f39c12;
}

.skill-category:nth-child(5) {
    border-left-color: #9b59b6;
}

.skill-category:nth-child(6) {
    border-left-color: #1abc9c;
}

.skills-column .skill-category-title {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

.skill-category-title i {
    font-size: 1.1rem;
    color: #3498db;
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

.skill-category:nth-child(2) .skill-category-title i {
    color: #e74c3c;
}

.skill-category:nth-child(3) .skill-category-title i {
    color: #2ecc71;
}

.skill-category:nth-child(4) .skill-category-title i {
    color: #f39c12;
}

.skill-category:nth-child(5) .skill-category-title i {
    color: #9b59b6;
}

.skill-category:nth-child(6) .skill-category-title i {
    color: #1abc9c;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skills-column .skill-item {
    background: rgba(52, 152, 219, 0.1);
    color: #2c3e50;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
    border: 1px solid rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-1px);
}

/* Projects Section Styles */
.projects-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.projects-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

.skills-column .projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.skills-column .project-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1rem;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.15);
}

.project-item:nth-child(2) {
    border-left-color: #e74c3c;
}

.project-name {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

.project-name i {
    font-size: 1.2rem;
    color: #3498db;
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

.project-item:nth-child(2) .project-name i {
    color: #e74c3c;
}

.project-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-family: "Courier New", "Monaco", "Menlo", "Consolas", monospace;
}

/* Responsive styles for Skills and Projects */
@media (max-width: 1024px) {
    .experience-skills-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-column .work-history,
    .skills-column .skills-section,
    .skills-column .projects-section {
        margin: 0;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {

    .skills-section,
    .projects-section {
        margin: 1rem auto;
        padding: 1.5rem;
    }

    .skills-title,
    .projects-title {
        font-size: 1.8rem;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .skill-category,
    .project-item {
        padding: 1rem;
    }

    .skill-category-title,
    .project-name {
        font-size: 1.1rem;
    }

    .skill-items {
        gap: 0.3rem;
    }

    .skill-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {

    .skills-section,
    .projects-section {
        margin: 1rem auto;
        padding: 1rem;
    }

    .skills-title,
    .projects-title {
        font-size: 1.5rem;
    }

    .skill-category-title,
    .project-name {
        font-size: 1rem;
    }

    .skill-item {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}