@import url('https://fonts.googleapis.com/css2?family=Neonderthaw&family=Train+One&display=swap');

:root {
    /* Palette */
    --navy-1: #020c11;
    /* Darker deep navy */
    --navy-2: #06141B;
    --navy-3: #11212D;
    --accent: #DFF04A;
    /* Neon Lime */
    --accent-glow: rgba(223, 240, 74, 0.5);
    --text: #ffffff;
    --text-muted: #9BA8AB;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    background-color: #031017;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

/* Site Header */
.site-header {
    position: sticky;
    top: 20px;
    width: 90%;
    margin: 0 auto;
    background: rgba(2, 8, 12, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 24px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo .dot {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.main-nav .cta {
    background: var(--accent);
    color: #000;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(223, 240, 74, 0.2);
}

.main-nav .cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(223, 240, 74, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .site-header {
        width: 100%;
        top: 0;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(2, 12, 17, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
        visibility: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.hero-greeting {
    color: var(--accent);
    font-family: 'Fira Code', monospace;
    margin-bottom: 16px;
    font-size: 18px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 84px;
    line-height: 1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -2px;
    position: relative;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

.sub-headline {
    font-size: 32px;
    color: #d1d5db;
    margin-bottom: 24px;
    font-weight: 300;
}

.typing-text {
    color: var(--accent);
    font-weight: 600;
    border-right: 2px solid var(--accent);
    padding-right: 4px;
    animation: blink 0.75s step-end infinite;
}

.hero-lead {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn.primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(223, 240, 74, 0.2);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(223, 240, 74, 0.4);
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn.ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Hero Art - Profile Image with Floating Badges */
.hero-art {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.art-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 240, 74, 0.1), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

.hero-art img {
    width: 420px;
    height: 520px;
    object-fit: cover;
    border-radius: 40px;
    transform: rotate(-3deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.hero-art:hover img {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.floating-badge {
    position: absolute;
    background: rgba(13, 31, 43, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-badge i {
    font-size: 20px;
    color: var(--accent);
}

.badge-1 {
    top: 60px;
    right: 20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 80px;
    left: -20px;
    animation-delay: 3s;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes blink {

    0%,
    100% {
        border-color: transparent
    }

    50% {
        border-color: var(--accent)
    }
}

@keyframes glitch-anim {
    0% {
        clip: rect(34px, 9999px, 11px, 0);
    }

    20% {
        clip: rect(78px, 9999px, 96px, 0);
    }

    40% {
        clip: rect(12px, 9999px, 5px, 0);
    }

    60% {
        clip: rect(56px, 9999px, 32px, 0);
    }

    80% {
        clip: rect(89px, 9999px, 67px, 0);
    }

    100% {
        clip: rect(23px, 9999px, 9px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }

    20% {
        clip: rect(12px, 9999px, 3px, 0);
    }

    40% {
        clip: rect(87px, 9999px, 76px, 0);
    }

    60% {
        clip: rect(43px, 9999px, 2px, 0);
    }

    80% {
        clip: rect(5px, 9999px, 34px, 0);
    }

    100% {
        clip: rect(98px, 9999px, 56px, 0);
    }
}



/* About Section */
.about {
    margin-top: 0;
    padding: 80px 24px;
    background: var(--navy-1);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--accent);
    bottom: -8px;
    left: 0;
    box-shadow: 0 0 10px var(--accent-glow);
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-text strong {
    color: var(--accent);
    font-weight: 600;
}

/* About Visual - Code Card */
.code-card {
    background: #0d1f2b;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    font-family: 'Fira Code', monospace;
    position: relative;
    transition: transform 0.3s ease;
}

.code-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.code-header {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

pre {
    margin: 0;
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: auto;
}

/* Skills Section */
.skills {
    padding: 100px 0;
    background: var(--navy-2);
    border-top: 1px solid var(--glass-border);
}

.skills h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.skill-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 30px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-card i {
    font-size: 48px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.skill-card span {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 15px;
}

.skill-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.skill-card:hover i {
    color: var(--text);
    text-shadow: 0 0 20px var(--accent-glow);
    transform: scale(1.1);
}

.skill-card:hover span {
    color: var(--text);
}

/* Specific Brand Colors on Hover */
.skill-card:hover i.bxl-html5 {
    color: #e34c26;
    text-shadow: 0 0 20px rgba(227, 76, 38, 0.5);
}

.skill-card:hover i.bxl-css3 {
    color: #264de4;
    text-shadow: 0 0 20px rgba(38, 77, 228, 0.5);
}

.skill-card:hover i.bxl-javascript {
    color: #f7df1e;
    text-shadow: 0 0 20px rgba(247, 223, 30, 0.5);
}

.skill-card:hover i.bxl-react {
    color: #61dafb;
    text-shadow: 0 0 20px rgba(97, 218, 251, 0.5);
}

.skill-card:hover i.bxl-nodejs {
    color: #339933;
    text-shadow: 0 0 20px rgba(51, 153, 51, 0.5);
}

.skill-card:hover i.bxl-mongodb {
    color: #47a248;
    text-shadow: 0 0 20px rgba(71, 162, 72, 0.5);
}

.skill-card:hover i.bxl-tailwind-css {
    color: #06b6d4;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.skill-card:hover i.bxl-github {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}


/* Projects Section */
/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--navy-1);
    position: relative;
    /* Optional: Subtle background glow for the section */
}

.projects h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.project-card {
    background: rgba(6, 20, 27, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px -10px rgba(223, 240, 74, 0.15);
}

.project-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2, 12, 17, 0.8), transparent);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.project-card:hover .overlay-glow {
    opacity: 0.3;
}

.project-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.project-header h3 {
    margin: 0;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.project-card:hover .project-header h3 {
    color: var(--accent);
}

.badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.project-info p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    margin-top: auto;
}

.project-tags span {
    font-size: 12px;
    color: var(--accent);
    background: rgba(223, 240, 74, 0.05);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(223, 240, 74, 0.15);
    transition: all 0.3s ease;
}

.project-card:hover .project-tags span {
    background: rgba(223, 240, 74, 0.1);
    box-shadow: 0 0 10px rgba(223, 240, 74, 0.1);
}

.project-link {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.project-link i {
    font-size: 18px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.project-card:hover .project-link {
    gap: 12px;
}

.project-card:hover .project-link i {
    transform: translateX(2px);
}

.view-all-container {
    text-align: center;
    margin-top: 60px;
}

/* Experience Section */
.experience {
    padding: 100px 0;
    background: var(--navy-2);
    position: relative;
}

.experience h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 700;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -37px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
    top: 5px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-content h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 20px;
}

.timeline-content .date {
    display: block;
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 12px;
    font-family: 'Fira Code', monospace;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 24px;
    background: radial-gradient(circle at top center, #0f2a35 0%, var(--navy-1) 70%);
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 700;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: var(--text-muted);
}

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

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

/* Updated Contact Card */
.contact-card {
    max-width: none;
    margin: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}


/* @keyframes liquidMove {
    0% { 
        transform: translate(0, 0) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% { 
        transform: translate(-1%, 1%) rotate(180deg);
        border-radius: 40% 60% 70% 30% / 30% 60% 40% 70%;
    }
    100% { 
        transform: translate(0, -1%) rotate(360deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
} */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text);
    font-size: 15px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(223, 240, 74, 0.15);
    outline: none;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-message {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.2);
    color: #2ed573;
}

.form-message.error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}



.site-footer {
    padding: 22px 0;
    text-align: center;
    color: var(--muted-2)
}

/* =========================================
   Responsive Design
   ========================================= */

/* Tablet & Smaller Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero h1 {
        font-size: 72px;
    }

    .about-grid,
    .contact-wrapper {
        gap: 40px;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* Tablet & Large Mobile (max-width: 768px) */
@media (max-width: 768px) {

    /* Hero Section */
    .hero {
        padding-top: 70px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-left {
        order: 1;
    }

    .hero-art {
        order: 2;
        justify-content: center;
        margin-top: 0;
    }

    .hero-greeting {
        margin: 0 auto 16px;
    }

    .sub-headline {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .hero-lead {
        margin: 0 auto 30px;
        font-size: 16px;
    }

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

    .art-circle {
        width: 400px;
        height: 400px;
    }

    .hero-art img {
        width: 320px;
        height: 400px;
        transform: rotate(0deg);
        margin-top: 0;
    }

    .floating-badge {
        display: none;
    }

    /* About Section */
    .about {
        padding: 60px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .code-card {
        margin-top: 30px;
        text-align: left;
    }

    /* Experience Section */
    .experience {
        padding: 60px 0;
    }

    .timeline {
        padding-left: 0;
        border-left: none;
        max-width: 100%;
        margin: 0 24px;
        position: relative;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 0px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: rgba(255, 255, 255, 0.1);
    }

    .timeline-item {
        padding-left: 30px;
        margin-bottom: 30px;
    }

    .timeline-dot {
        left: -7px;
    }

    /* Contact Section */
    .contact {
        padding: 60px 24px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        align-items: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 20px 20px 20px;
    }

    .contact h2 {
        padding: 20px 0 0 0;
    }

    .header-inner {
        justify-content: center;
    }

    /* Typography Adjustments */
    .hero h1 {
        font-size: 38px;
        /* Slightly smaller for better fit */
        letter-spacing: -1px;
    }

    .sub-headline {
        font-size: 20px;
    }

    .section-title,
    h2 {
        font-size: 28px !important;
    }

    /* Hero Adjustments */
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-art img {
        width: 260px;
        height: 320px;
    }

    .art-circle {
        width: 280px;
        height: 280px;
    }

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

    .skill-card {
        padding: 20px 10px;
    }

    .skill-card i {
        font-size: 36px;
    }

    .skill-card span {
        font-size: 13px;
    }

    /* Projects */
    .projects {
        padding: 60px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .project-image {
        height: 180px;
    }

    /* Footer */
    .site-footer {
        padding: 20px 0;
        font-size: 14px;
    }

    /* Timeline Mobile Tweak */
    .timeline {
        margin: 0 16px;
    }

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

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

    .timeline-dot {
        left: -7px;
    }
}
