/* CSS Variables - Neobrutalism */
:root {
    --bg-start: #ffffff;
    --bg-mid: #ffffff;
    --bg-end: #ffffff;
    
    --accent-primary: #3b82f6;
    --accent-secondary: #ffffff;
    --accent-tertiary: #ffffff;
    --accent-glow: transparent;
    
    --text-primary: #000000;
    --text-secondary: #222222;
    --text-muted: #555555;
    
    --card-bg: #ffffff;
    --card-border: #000000;
    --card-hover: #000000;
    
    --nav-bg: #ffffff;
    
    --font-main: 'Inter', sans-serif;
    
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.2s ease-out;
    --transition-slow: 0.3s ease-out;
    
    --neo-border: 4px solid #000000;
    --neo-shadow: 6px 6px 0px 0px #000000;
    --neo-shadow-hover: 2px 2px 0px 0px #000000;
    --neo-radius: 0px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-start);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    animation: bodyFadeIn 1.2s ease-in forwards;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Background Effects */
.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    pointer-events: none;
}

.background-glows {
    display: none;
}

.glow {
    display: none;
}

.glow-1 {
    display: none;
}

.glow-2 {
    display: none;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.bg-alt {
    background: transparent;
    border: none;
    box-shadow: none;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--accent-primary);
    text-shadow: 2px 2px 0px #000;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: var(--nav-bg);
    border-bottom: var(--neo-border);
    padding: 1rem 0;
    box-shadow: var(--neo-shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    perspective: 1000px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    position: relative;
    padding: 5px 0;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
    transform: translateY(-4px);
    text-shadow: none;
    background: var(--accent-secondary);
    padding: 5px 10px;
    border-radius: var(--neo-radius);
    border: 2px solid #000;
    box-shadow: 2px 2px 0px 0px #000;
}

.nav-links a.active {
    color: var(--accent-primary);
    text-shadow: 0 0 10px var(--accent-glow);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #000;
    transition: var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--neo-radius);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: var(--neo-border);
    outline: none;
    box-shadow: var(--neo-shadow);
    color: var(--text-primary);
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent-primary);
}

.btn-primary:hover {
    box-shadow: var(--neo-shadow-hover);
    transform: translate(4px, 4px);
}

.btn-outline {
    background: var(--card-bg);
}

.btn-outline:hover {
    background: var(--accent-secondary);
    box-shadow: var(--neo-shadow-hover);
    transform: translate(4px, 4px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}


.wave {
    display: inline-block;
    animation: wave 2.5s infinite;
    transform-origin: 70% 70%;
}

@keyframes wave {
    0% { transform: rotate( 0.0deg) }
    10% { transform: rotate(14.0deg) }
    20% { transform: rotate(-8.0deg) }
    30% { transform: rotate(14.0deg) }
    40% { transform: rotate(-4.0deg) }
    50% { transform: rotate(10.0deg) }
    60% { transform: rotate( 0.0deg) }
    100% { transform: rotate( 0.0deg) }
}

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

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.profile-img {
    width: 350px;
    height: 350px;
    border-radius: var(--neo-radius);
    object-fit: cover;
    z-index: 2;
    border: var(--neo-border);
    background-color: var(--accent-secondary);
    position: relative;
    box-shadow: var(--neo-shadow);
}

.profile-glow {
    display: none;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--text-primary);
    background: var(--card-bg);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--neo-radius);
    border: var(--neo-border);
    box-shadow: var(--neo-shadow);
}

.icon-1 {
    top: 10%;
    right: 5%;
    animation: floatIcon 4s ease-in-out infinite alternate;
}

.icon-2 {
    bottom: 20%;
    left: 0;
    animation: floatIcon 5s ease-in-out infinite alternate-reverse;
}

.icon-3 {
    bottom: 5%;
    right: 15%;
    animation: floatIcon 4.5s ease-in-out infinite alternate;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    text-align: left;
    font-size: 1.1rem;
    color: var(--text-primary);
    padding: 2rem;
    background: var(--card-bg);
    border: var(--neo-border);
    border-radius: var(--neo-radius);
    box-shadow: var(--neo-shadow);
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
}

.skill-card {
    background: var(--accent-tertiary);
    border: var(--neo-border);
    padding: 1.5rem;
    border-radius: var(--neo-radius);
    text-align: center;
    transition: var(--transition-fast);
    box-shadow: var(--neo-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.skill-card:hover {
    transform: translate(4px, 4px);
    box-shadow: var(--neo-shadow-hover);
}

.skill-icon {
    font-size: 2.5rem;
    margin: 0;
    transition: var(--transition-fast);
}

/* Education Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 4px;
    background: #000;
}

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

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

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--accent-secondary);
    border: 3px solid #000;
    border-radius: var(--neo-radius);
}

.timeline-content {
    background: var(--card-bg);
    border: var(--neo-border);
    padding: 1.5rem;
    border-radius: var(--neo-radius);
    transition: var(--transition-fast);
    box-shadow: var(--neo-shadow);
}

.timeline-content:hover {
    transform: translate(4px, 4px);
    box-shadow: var(--neo-shadow-hover);
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.timeline-content h4 {
    font-size: 1rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.timeline-date {
    display: inline-block;
    padding: 4px 10px;
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid #000;
    border-radius: var(--neo-radius);
    box-shadow: 2px 2px 0px #000;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--card-bg);
    border: var(--neo-border);
    border-radius: var(--neo-radius);
    overflow: hidden;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    box-shadow: var(--neo-shadow);
}

.project-card:hover {
    transform: translate(4px, 4px);
    box-shadow: var(--neo-shadow-hover);
}

.project-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.project-img-wrapper::after {
    display: none;
}

.project-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-tech span {
    font-size: 0.8rem;
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 4px 10px;
    border-radius: var(--neo-radius);
    border: 2px solid #000;
    box-shadow: 2px 2px 0px #000;
    font-weight: 800;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.project-link:hover {
    color: var(--accent-primary);
    text-shadow: 0 0 5px var(--accent-glow);
}

/* Contact Section Refined */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

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

.contact-item-box {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: var(--neo-border);
    padding: 1.5rem;
    border-radius: var(--neo-radius);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--neo-shadow);
}

.contact-item-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--accent-secondary), var(--accent-primary));
    transform: scaleY(0);
    transition: transform var(--transition-normal);
    transform-origin: bottom;
}

.contact-item-box:hover::before {
    transform: scaleY(1);
}

.contact-item-box:hover {
    transform: translate(4px, 4px);
    box-shadow: var(--neo-shadow-hover);
    background: var(--accent-secondary);
}

.contact-item-box .contact-icon {
    width: 50px; 
    height: 50px;
    min-width: 50px;
    flex-shrink: 0;
    background: var(--card-bg);
    border-radius: var(--neo-radius);
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.3rem; 
    margin-right: 1.2rem;
    color: var(--accent-primary);
    box-shadow: 2px 2px 0px 0px #000;
    border: 2px solid #000;
    transition: var(--transition-fast);
}

.contact-item-box:hover .contact-icon {
    background: var(--accent-primary);
    color: #fff;
}

.contact-item-box .contact-text {
    display: flex; 
    flex-direction: column;
}

.contact-item-box .contact-text span {
    font-size: 0.85rem; 
    color: var(--text-secondary); 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.contact-item-box .contact-text strong {
    font-size: 1.05rem; 
    color: var(--text-primary); 
    font-weight: 600;
    word-break: break-all;
}

.contact-item-box .copy-small {
    margin-left: auto;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: var(--neo-radius);
    border: 2px solid #000;
    background: var(--card-bg);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 2px 2px 0px #000;
}

.contact-item-box .copy-small:hover {
    background: var(--accent-secondary);
    transform: translate(2px, 2px);
    box-shadow: none;
}

.cta-footer {
    text-align: center; 
    margin-top: 2rem;
    padding: 3rem;
    background: #fff;
    border-radius: var(--neo-radius);
    border: var(--neo-border);
    box-shadow: var(--neo-shadow);
}

.cta-footer h2 {
    font-size: 2.2rem; 
    margin-bottom: 1.5rem; 
    color: var(--text-primary);
}

.cta-footer .talk {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.1rem; 
    font-weight: 800;
    color: var(--text-primary); 
    background: var(--card-bg);
    border-radius: var(--neo-radius);
    border: var(--neo-border);
    transition: var(--transition-fast);
    box-shadow: var(--neo-shadow);
    text-transform: uppercase;
}

.cta-footer .talk:hover {
    transform: translate(4px, 4px);
    box-shadow: var(--neo-shadow-hover);
}

.contact-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--neo-radius);
    border: var(--neo-border);
    box-shadow: var(--neo-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: #fff;
    border: 3px solid #000;
    border-radius: var(--neo-radius);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-fast);
    box-shadow: 4px 4px 0px 0px #000;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 2px 2px 0px 0px #000;
    transform: translate(2px, 2px);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: var(--neo-border);
    background: var(--card-bg);
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted) !important;
}

.footer-note i.fa-heart {
    color: var(--text-primary);
}

/* Minimal Body Fade In to Preserve Position Fixed */
@keyframes bodyFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Normal Cursor Elements */
html, body, *, a, button, input, textarea, .contact-item-box, .project-card, .skill-card {
    cursor: auto !important;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 0 10px var(--accent-primary), 0 0 20px var(--accent-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: transform;
}

.cursor-outline {
    width: 25px;
    height: 25px;
    border: 1px solid var(--accent-glow);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0 15px var(--accent-glow);
    opacity: 0;
    will-change: transform;
    backdrop-filter: blur(2px);
}

.cursor-glow-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.1) 30%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: screen;
    will-change: transform, opacity;
}

.mouse-particle {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--accent-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    box-shadow: 0 0 10px var(--accent-primary);
    mix-blend-mode: screen;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes floatIcon {
    from { transform: translateY(0) rotate(0deg); }
    to { transform: translateY(-15px) rotate(10deg); }
}

/* Intersection Observer Classes - Aggressive Bouncy Smoothness */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .hero-container { gap: 2rem; }
    .profile-img { width: 300px; height: 300px; }
    .profile-glow { width: 330px; height: 330px; }
    
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .projects-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--nav-bg);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        border-top: var(--neo-border);
        border-bottom: var(--neo-border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition-normal);
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .hamburger { display: block; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-desc { margin: 0 auto 2rem; }
    
    .hero-buttons { justify-content: center; }
    
    .hero-image-container { grid-row: 1; margin-bottom: 2rem; }
    
    /* .skills-container handled by flexbox */
    
    .timeline::before { left: 10px; }
    .timeline-item { padding-left: 40px; }
    .timeline-dot { left: 1px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .section { padding: 3rem 0; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 1rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; }
    .btn { font-size: 0.9rem; padding: 0.7rem 1.5rem; }
    .profile-img { width: 250px; height: 250px; }
    .profile-glow { width: 280px; height: 280px; }
    .contact-form { padding: 1.5rem; }
    
    .project-info { padding: 1.2rem; }
    .project-info h3 { font-size: 1.15rem; }
    .project-info p { font-size: 0.9rem; margin-bottom: 1rem; }
    .project-tech { gap: 0.4rem; }
    .project-tech span { 
        font-size: 0.7rem; 
        padding: 3px 8px; 
    }
}

/* Added Elements for Merge */

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid #000;
    border-radius: var(--neo-radius);
    box-shadow: 2px 2px 0px #000;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-card {
    background: var(--card-bg);
    border: var(--neo-border);
    border-radius: var(--neo-radius);
    padding: 2.5rem;
    box-shadow: var(--neo-shadow);
}

.about-main {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: var(--neo-border);
}

.stats div {
    display: flex;
    flex-direction: column;
}

.stats strong {
    font-size: 2rem;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stats span {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Old merge elements replaced by Contact Section Refined above */

.nav-btn {
    padding: 0.5rem 1.5rem;
}

/* Skills Section Updates */
.skills-wrapper {
    margin-top: 2rem;
}

/* Education Timeline Logos */
.edu-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.edu-text {
    flex: 1;
}

.edu-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border-radius: var(--neo-radius);
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000;
    transition: var(--transition-fast);
}

.timeline-content:hover .edu-logo img {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 992px) {
    .nav-btn {
        display: none;
    }
}

@media (max-width: 600px) {
    .edu-flex {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}
