@media screen and (max-width: 1024px) {
    .hero-content {
        gap: 4rem;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .skill-item {
        width: calc(50% - 1rem);
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.nav-active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    /* Hero */
    .hero-content {
        flex-direction: column-reverse;
        gap: 3rem;
        padding-top: 2rem;
    }
    
    .hero-image img {
        width: 250px;
        height: 250px;
    }
    
    .hero-heading {
        font-size: 3rem;
    }
    
    /* Experience*/
    .tabs-container {
        flex-direction: column;
    }
    
    .tabs {
        flex: none;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 1rem;
        margin-top: 1rem;
    }
    
    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .tab-button.active::before {
        right: 0;
        top: auto;
        bottom: -1rem;
        height: 3px;
        width: 100%;
    }
    
    .tab-content {
        padding: 1rem 0;
    }
    
    .skill-item {
        width: 100%;
    }
    
    /* Projects */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-filter {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-card {
        flex-direction: column;
        text-align: center;
    }
    
    .about-card-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .project-filter {
        flex-wrap: wrap;
    }
}