/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #4361ee;
    --primary-dark: #3a56d4;
    --secondary: #7209b7;
    --accent: #f72585;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f1f5f9;
    --lighter: #f8fafc;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-dark: rgba(0, 0, 0, 0.2);
    --border: rgba(255, 255, 255, 0.1);
}

body {
    background: linear-gradient(135deg, var(--darker), var(--dark));
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    background-attachment: fixed;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
    color: var(--light);
}

h5 {
    font-size: 1.2rem;
    color: var(--light);
}

p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--light);
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light);
}

#nav-toggle {
    display: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--glass);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(var(--primary), transparent);
    opacity: 0.2;
    filter: blur(40px);
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(var(--accent), transparent);
    opacity: 0.2;
    filter: blur(40px);
    z-index: -1;
    animation: float 10s ease-in-out infinite;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-animation {
    background-color: var(--darker);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 1.1rem;
    line-height: 1.8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--accent);
}

.code-tag {
    color: #ff79c6;
}

.code-function {
    color: #50fa7b;
}

.code-keyword {
    color: #ff79c6;
}

.code-string {
    color: #f1fa8c;
}

.code-value {
    color: #bd93f9;
}

.code-variable {
    color: #8be9fd;
}

/* Skills Section */
.skills {
    padding: 6rem 0;
    background: rgba(15, 23, 42, 0.5);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-card {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s;
    border-radius: 16px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
}

.skill-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(67, 97, 238, 0.1), transparent);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.skill-card h3 {
    margin-bottom: 1rem;
}

.skill-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.level-bar {
    flex: 1;
    height: 8px;
    background: var(--glass-dark);
    border-radius: 4px;
    overflow: hidden;
}

.level-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease;
}

.skill-card:hover .level-progress {
    width: attr(data-level);
}

/* Projects Section */
.projects {
    padding: 6rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.project-card {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    height: 200px;
    background: linear-gradient(145deg, var(--primary-dark), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(25deg) translateY(100%);
    transition: transform 0.6s;
}

.project-card:hover .project-image::before {
    transform: rotate(25deg) translateY(-50%);
}

.image-placeholder {
    text-align: center;
    z-index: 2;
}

.image-placeholder i {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
}

.image-placeholder h4 {
    color: white;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    margin-bottom: 0.5rem;
}

.project-info p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-tags span {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.project-link:hover {
    gap: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: rgba(15, 23, 42, 0.5);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.coding-proficiencies {
    margin: 2.5rem 0;
}

.coding-proficiencies h4 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.coding-proficiencies h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.proficiency {
    margin-bottom: 1.2rem;
}

.proficiency span {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--light);
}

.proficiency-bar {
    height: 10px;
    background: var(--glass-dark);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.proficiency-level {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 5px;
    transition: width 1.5s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
}

.other-skills {
    margin: 3rem 0;
}

.other-skills h4 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.other-skills h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.skill-item {
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.skill-item:hover {
    transform: translateY(-5px);
}

.skill-item h5 {
    margin-bottom: 0.8rem;
    color: var(--light);
    display: flex;
    align-items: center;
}

.skill-item h5::before {
    content: '▹';
    color: var(--accent);
    margin-right: 0.5rem;
}

.skill-item p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.coding-journey {
    margin: 3rem 0;
}

.coding-journey h4 {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.coding-journey h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 0.5rem;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: 3px solid var(--dark);
    z-index: 1;
}

.timeline-year {
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s;
}

.timeline-content:hover {
    transform: translateX(5px);
}

.timeline-content h5 {
    margin-bottom: 0.5rem;
    color: var(--light);
}

.timeline-content p {
    color: #cbd5e1;
    margin-bottom: 0;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-container {
    width: 300px;
    height: 300px;
    position: relative;
}

.profile-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--primary), var(--accent));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: morph 8s ease-in-out infinite;
}

.profile-shape i {
    font-size: 5rem;
    color: white;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-details i {
    margin-right: 1rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--glass);
    color: var(--light);
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--glass-dark);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--light);
}

.footer-section a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: #94a3b8;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    33% {
        border-radius: 70% 30% 50% 50% / 30% 40% 70% 60%;
    }
    66% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 10rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .skills-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--glass-dark);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        gap: 1.5rem;
    }
    
    #nav-toggle:checked ~ .nav-links {
        left: 0;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item::before {
        left: -1.9rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .code-animation {
        font-size: 0.9rem;
        padding: 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
/* About Section Enhancements */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(var(--primary), transparent 70%);
    opacity: 0.1;
    filter: blur(40px);
    animation: pulse 8s ease-in-out infinite;
    z-index: -1;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(var(--accent), transparent 70%);
    opacity: 0.1;
    filter: blur(40px);
    animation: pulse 10s ease-in-out infinite;
    z-index: -1;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
}

.about-text > p {
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 1.5rem;
    border-left: 3px solid var(--primary);
    background: var(--glass);
    border-radius: 0 12px 12px 0;
    position: relative;
    overflow: hidden;
}

.about-text > p::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.about-buttons {
    margin: 2.5rem 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.about-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.about-buttons .btn:hover::before {
    left: 100%;
}

.coding-proficiencies {
    background: var(--glass);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.coding-proficiencies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.coding-proficiencies h4 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.coding-proficiencies h4 i {
    margin-right: 1rem;
    color: var(--accent);
}

.proficiency {
    margin-bottom: 2rem;
    position: relative;
}

.proficiency:last-child {
    margin-bottom: 0;
}

.proficiency span {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--light);
    font-size: 1.1rem;
}

.proficiency-bar {
    height: 12px;
    background: var(--glass-dark);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.proficiency-level {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
    transition: width 1.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.proficiency-level::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s infinite;
}

.other-skills {
    margin: 4rem 0;
    padding: 2.5rem;
    background: var(--glass);
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
}

.other-skills h4 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.other-skills h4 i {
    margin-right: 1rem;
    color: var(--accent);
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}

.skill-item {
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transition: height 0.5s ease;
}

.skill-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.skill-item:hover::before {
    height: 100%;
}

.skill-item h5 {
    margin-bottom: 1rem;
    color: var(--light);
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.skill-item h5 i {
    margin-right: 0.8rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.4rem;
}

.skill-item p {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.coding-journey {
    margin: 4rem 0;
    padding: 2.5rem;
    background: var(--glass);
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
}

.coding-journey h4 {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
}

.coding-journey h4 i {
    margin-right: 1rem;
    color: var(--accent);
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px;
    height: calc(100% - 20px);
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.8rem;
    top: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: 4px solid var(--dark);
    z-index: 2;
    box-shadow: 0 0 15px rgba(67, 97, 238, 0.5);
}

.timeline-year {
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(247, 37, 133, 0.1);
    border-radius: 20px;
}

.timeline-content {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(67, 97, 238, 0.05), transparent);
    transition: transform 0.6s ease;
    transform: translateX(-100%);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.timeline-content:hover::before {
    transform: translateX(100%);
}

.timeline-content h5 {
    margin-bottom: 0.8rem;
    color: var(--light);
    font-size: 1.3rem;
}

.timeline-content p {
    color: #cbd5e1;
    margin-bottom: 0;
    line-height: 1.7;
}

/* New Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.15;
        transform: scale(1.05);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive adjustments for About section */
@media (max-width: 768px) {
    .about-text > p {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .coding-proficiencies,
    .other-skills,
    .coding-journey {
        padding: 1.5rem;
    }
    
    .skills-list {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 2rem;
    }
    
    .timeline-item::before {
        left: -1.5rem;
    }
    
    .about-buttons {
        justify-content: center;
    }
    
    .about-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .coding-proficiencies h4,
    .other-skills h4,
    .coding-journey h4 {
        font-size: 1.4rem;
    }
    
    .proficiency span {
        font-size: 1rem;
    }
    
    .skill-item {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}
