@media screen and (max-width: 1400px) {
    nav {
        padding: 1.5rem 3rem;
    }

    section {
        padding: 6rem 3rem;
    }

    .profile-content {
        gap: 3rem;
    }

    .title {
        font-size: 3.5rem;
    }

    .profile-img-wrapper {
        width: 300px;
        height: 300px;
    }
}

@media screen and (max-width: 1200px) {
    #desktop-nav {
        display: none !important;
    }

    #hamburger-nav {
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        padding: 1.5rem 2rem;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
        z-index: 10002;
    }

    section {
        padding: 5rem 2rem;
    }

    #profile {
        padding-top: 8rem;
    }

    .profile-content {
        flex-direction: column;
        gap: 2rem;
    }

    .section__text {
        text-align: center;
    }

    .btn-container {
        justify-content: center;
    }

    #social-container {
        justify-content: center;
    }

    .title {
        font-size: 3rem;
    }

    .section-container {
        flex-direction: column;
    }

    .about-containers {
        flex-direction: column;
    }

    .arrow {
        display: none;
    }

    .projects-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    #desktop-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    #hamburger-nav {
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        padding: 1rem 1.5rem;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
        z-index: 10002;
    }

    section {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    #profile {
        padding-top: 7rem;
    }

    .title {
        font-size: 2.5rem;
    }

    .section__text__p2 {
        font-size: 1.5rem;
    }

    .section__text__p3 {
        font-size: 1rem;
    }

    .profile-img-wrapper {
        width: 250px;
        height: 250px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .experience-sub-title {
        font-size: 1.3rem;
    }

    .projects-container {
        gap: 1.5rem;
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-title {
        font-size: 1.3rem;
    }

    footer {
        padding: 2rem 1.5rem;
    }

    footer .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    #desktop-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    #hamburger-nav {
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        padding: 1rem 1.5rem;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
        z-index: 10002;
    }

    .logo {
        font-size: 1.5rem;
    }

    .title {
        font-size: 2rem;
    }

    .section__text__p1 {
        font-size: 1rem;
    }

    .section__text__p2 {
        font-size: 1.3rem;
    }

    .section__text__p3 {
        font-size: 0.9rem;
    }

    .profile-img-wrapper {
        width: 200px;
        height: 200px;
    }

    .btn-container {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .about {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .details-container {
        padding: 1.5rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skill-badge {
        padding: 0.8rem 1rem;
    }

    .projects-container {
        grid-template-columns: 1fr;
    }

    .project-links {
        flex-direction: column;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }
}