/* css/style.css */
:root {
    --bg-color: #0a101f;
    --card-color: #111a30;
    --primary-color: #38bdf8;
    --text-color-primary: #e2e8f0;
    --text-color-secondary: #94a3b8;
    --border-color: #1e293b;
    --glass: rgba(255,255,255,0.1);
    --accent-color: #10b981;
    --shadow-color: rgba(0,0,0,0.3);
    --glow-color: rgba(56, 189, 248, 0.3);
    --nav-background: #0a101f;
}

[data-theme="light"] {
    --bg-color: #f8fafc;
    --card-color: #ffffff;
    --primary-color: #0ea5e9;
    --text-color-primary: #1e293b;
    --text-color-secondary: #475569;
    --border-color: #e2e8f0;
    --glass: rgba(0,0,0,0.05);
    --accent-color: #059669;
    --shadow-color: rgba(0,0,0,0.1);
    --glow-color: rgba(14, 165, 233, 0.3);
    --nav-background: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.custom-cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor {
    transform: scale(1.5);
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--text-color-primary);
    margin-bottom: 1rem;
}

h2.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: 0.05em;
}

h2.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

p {
    margin-bottom: 1rem;
    color: var(--text-color-secondary);
    font-size: 1.05rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #7dd3fc;
}

section {
    padding: 8rem 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

section:last-of-type {
    border-bottom: none;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--nav-background);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: background 0.3s ease;
}

#main-header.scrolled {
    background-color: var(--nav-background);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color-primary);
    letter-spacing: -0.05em;
}

#main-nav {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color-primary);
    transition: all 0.3s ease;
}

#main-nav.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#main-nav.active .hamburger span:nth-child(2) {
    opacity: 0;
}

#main-nav.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

#main-nav ul {
    display: flex;
    list-style: none;
}

#main-nav li {
    margin-left: 2.5rem;
}

#main-nav a {
    font-weight: 600;
    color: var(--text-color-secondary);
    position: relative;
}

#main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

#main-nav a.active,
#main-nav a:hover {
    color: var(--primary-color);
}

/* Hero */
#hero {
    padding-top: 150px;
    padding-bottom: 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, var(--card-color), var(--bg-color));
    z-index: -2;
    transform: skewY(-5deg);
    opacity: 0.8;
}

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

.hero-content {
    max-width: 600px;
}

#hero h4 {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

#hero h1 {
    font-size: 5rem;
    margin: 0.5rem 0;
    line-height: 1.1;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero h3 {
    font-size: 2.5rem;
    color: var(--text-color-primary);
    font-weight: 600;
}

.profile-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 6px solid var(--primary-color);
    box-shadow: 0 0 60px rgba(56, 189, 248, 0.3);
    margin-left: 4rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-img:hover {
    transform: scale(1.05) rotate(5deg);
}

.contact-info {
    margin-top: 2.5rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-info li {
    font-size: 1rem;
    color: var(--text-color-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info li a {
    color: var(--text-color-secondary);
}

.contact-info li i {
    color: var(--primary-color);
}

.socials {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.socials a {
    color: var(--text-color-primary);
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.socials a:hover {
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: var(--bg-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
}

/* About */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    background: var(--card-color);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.stat:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 30px var(--shadow-color);
    border-color: var(--primary-color);
}

.stat span {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: block;
    font-weight: 700;
}

.stat p {
    font-size: 1rem;
    color: var(--text-color-secondary);
    font-weight: 500;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: var(--card-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px var(--shadow-color);
    opacity: 1 !important;
}

.skill-category:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-color), 0 0 20px var(--glow-color);
    border-color: var(--primary-color);
}

.skill-category h3 {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.4rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.skill-category:hover h3 {
    color: var(--accent-color);
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    font-size: 1rem;
    color: var(--text-color-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.skill-category li:hover {
    background: var(--glass);
    color: var(--text-color-primary);
    transform: translateX(5px);
}

.skill-category li i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.skill-category li:hover i {
    transform: rotate(360deg);
}

/* Timeline */
.timeline-section {
    overflow: hidden;
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    opacity: 0.3;
}

.timeline-item {
    padding: 1rem 3rem;
    position: relative;
    background-color: inherit;
    width: 50%;
    transition: all 0.6s ease-out;
    opacity: 1 !important;
    transform: none !important;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: 4px solid var(--bg-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4), inset 0 0 10px rgba(255,255,255,0.3);
}

.timeline-item:hover::after {
    transform: scale(1.3) rotate(360deg);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.6), inset 0 0 15px rgba(255,255,255,0.5);
}

.timeline-item.left {
    left: 0;
    padding-right: 4rem;
}

.timeline-item.left::after {
    right: -12px;
}

.timeline-item.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 28px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid var(--card-color);
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent var(--card-color);
}

.timeline-item.right {
    left: 50%;
    padding-left: 4rem;
}

.timeline-item.right::after {
    left: -12px;
}

.timeline-item.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 28px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid var(--card-color);
    border-width: 12px 12px 12px 0;
    border-color: transparent var(--card-color) transparent transparent;
}

.timeline-content {
    padding: 2rem;
    background: var(--card-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    box-shadow: 0 15px 30px var(--shadow-color), 0 0 20px var(--glow-color);
    transform: translateY(-8px) scale(1.02);
}

.timeline-content .date {
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.timeline-content:hover .date {
    color: var(--primary-color);
}

.timeline-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.timeline-content:hover h3 {
    color: var(--accent-color);
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color-secondary);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.timeline-content:hover h4 {
    color: var(--text-color-primary);
}

.timeline-content ul {
    list-style-type: none;
    padding-left: 0;
}

.timeline-content li {
    margin-bottom: 1rem;
    color: var(--text-color-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.timeline-content li:hover {
    transform: translateX(5px);
    color: var(--text-color-primary);
}

.timeline-content li::before {
    content: '→';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0.2rem;
    transition: transform 0.3s ease;
}

.timeline-content li:hover::before {
    transform: rotate(90deg);
}

/* Responsive Timeline */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 35px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 75px;
        padding-right: 25px;
    }
    .timeline-item.left, .timeline-item.right {
        left: 0;
        padding-left: 5rem;
        padding-right: 1.5rem;
    }
    .timeline-item.left::before, .timeline-item.right::before {
        left: 55px;
        border: medium solid var(--card-color);
        border-width: 12px 12px 12px 0;
        border-color: transparent var(--card-color) transparent transparent;
    }
    .timeline-item.left::after, .timeline-item.right::after {
        left: 23px;
    }
}

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

.project-card {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-10px) rotate(1deg) scale(1.03);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: var(--primary-color);
}

.project-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.2;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-card:hover .project-icon {
    opacity: 1;
    transform: rotate(10deg);
}

.project-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.project-tags {
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tags span {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.85rem;
    background: var(--glass);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: all 0.3s ease;
}

.project-tags span:hover {
    background: rgba(56, 189, 248, 0.1);
    transform: translateY(-2px) scale(1.1);
}

.project-card p {
    font-size: 1rem;
    color: var(--text-color-secondary);
    flex-grow: 1;
    transition: color 0.3s ease;
}

.project-card:hover p {
    color: var(--text-color-primary);
}

/* Contributions */
.contributions {
    text-align: center;
    margin-top: 5rem;
    background: var(--card-color);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: all 0.4s ease;
}

.contributions:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.contributions h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contributions p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.contributions .btn {
    margin: 0.75rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contributions .btn:hover {
    transform: translateY(-3px) scale(1.1);
}

/* GitHub Stats */
.github-stats .stats-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.github-stats img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: all 0.4s ease;
}

.github-stats img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 30px var(--shadow-color);
}

/* Education */
.education-certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.education-item, .certs-item {
    background: var(--card-color);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: all 0.4s ease;
    opacity: 1 !important;
}

.education-item:hover, .certs-item:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: var(--primary-color);
}

.education-item h3, .certs-item h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.education-item:hover h3, .certs-item:hover h3 {
    color: var(--accent-color);
}

.education-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.education-item p {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.1rem;
}

.certs-item ul {
    list-style: none;
}

.certs-item li {
    color: var(--text-color-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.certs-item li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.certs-item li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.certs-item li:hover::before {
    transform: scale(1.2);
}

/* Contact */
.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, var(--card-color), transparent);
    opacity: 0.5;
    z-index: -1;
}

#contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-color);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.4s ease;
}

#contact-form:hover {
    box-shadow: 0 20px 50px var(--shadow-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-color-primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
    background: var(--card-color);
}

.btn-submit {
    display: block;
    width: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: var(--bg-color);
    padding: 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
}

/* Footer */
#main-footer {
    padding: 3rem 0;
    text-align: center;
    font-size: 1rem;
    color: var(--text-color-secondary);
    border-top: 1px solid var(--border-color);
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 90px;
    right: 40px;
    background: var(--card-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 15px var(--shadow-color);
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    #hero .container {
        flex-direction: column;
        text-align: center;
    }

    .profile-img {
        margin: 2rem 0 0 0;
        width: 200px;
        height: 200px;
    }

    .socials {
        justify-content: center;
    }

    .btn {
        margin: 2rem auto 0;
        display: flex;
        justify-content: center;
    }

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

    h1 {
        font-size: 4rem;
    }

    h2.section-title {
        font-size: 2.5rem;
    }

    #main-header .container {
        flex-direction: row;
        height: auto;
        padding: 1rem 0;
    }

    .logo {
        margin-bottom: 0;
    }

    #main-nav {
        width: auto;
    }

    .hamburger {
        display: flex;
        position: static;
        margin-left: auto;
    }

    #main-nav ul {
        display: none;
        flex-direction: column;
        width: 100vw;
        text-align: center;
        position: absolute;
        top: 80px;
        left: 0;
        background: var(--bg-color);
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
    }

    #main-nav.active ul {
        display: flex;
    }

    #main-nav li {
        margin: 1rem 0;
        margin-left: 0;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2.section-title {
        font-size: 2.2rem;
    }

    section {
        padding: 4rem 0;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    body {
        cursor: auto;
    }

    .custom-cursor {
        display: none;
    }
}

/* ENSURE VISIBILITY EVEN BEFORE JS LOADS */
.skill-category, .project-card, .timeline-item, .education-item, .certs-item, .stat {
    opacity: 1 !important;
    transform: none !important;
}