@media screen and (max-width:1300px){
    .profile-picture-container{
        width: 450px;
        height: 450px;
    }

    .profile-picture-area{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

}
@media screen and (max-width:1030px){
    body{
        overflow-X: hidden;
        width: 100%;
    }
    .list{
        display: none;
    }
    .navbar{
        margin: 0px;
        display: flex;
        padding-left: 10px;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: fixed;
        z-index: 2;
    } 
    .close-btn{
        display: block;
    }
    .menu-icon{
        display: block;
        padding-top: 0;
        margin: 0;
        margin-top: -10px;
    }

    .list {
        display: none;
        align-items: flex-end;
        flex-direction: column;
        position: absolute;
        top: 0px;
        width: 50%;
        background-color: #1F2833;
        right: 0;
        padding: 5px;
        height: 100vh;

    }
    .list.show {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding-left: 10px;
        width: 45%; 
        justify-self: flex-end;  
    }
    .list li{
        margin-top: 10px;
        margin-bottom: 10px;
        padding-bottom: 25PX;
    }
    .list li:last-child {
        margin-right: 30px;
    }
    .list li a {
        color: white;
        text-decoration: none;
        font-size: 20px;
        font-weight: bold;
        padding: 5px;
        align-items: left;
    }
    .list li a:hover {
        color: #66fcf1;
        padding: 8px;
        border-radius: 10px;
    }

    .leftside-content{
        width: 100%;
    }
    .leftside-content h4{
        margin: 0;
        padding: 0;
        font-size: 30px;
        color: #ffffff;
        font-family: "Michroma",sans-serif;
        line-height: 1.2;
        margin-bottom: 10px;
        padding-left: 10px;
        padding-top: 50px;
    }
    #intro {
        justify-content: center;
        margin: 0;
        padding: 0;
        font-size: 40px;
        line-height: 1.2;
        color: #ffffff;
        margin-bottom: 10px;
        font-family: "Michroma", sans-serif;
        width: 100%;
    }
    .slide_1{
        flex-direction: column;
        height: 100vh;
        width: 100%;
    }
    .leftside-content{
        padding: 10px;
        text-align: center;
    }
    .homepage-leftside{
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        height: 50vh;
        padding-top: 30px;
    }
    .leftside-links{
        padding-top: 10px;
        justify-content: center;
    }
    .github{
        justify-content: center;
    }
    .github p{
        font-size: 20px;
    }
    .linkdin{
        justify-content: center;
    }
    .linkdin p{
        font-size: 20px;
    }

    .about_me-container{
        margin: 0;
        padding: 0;
    }

    /* home page right side area */
    .profile-picture-area{
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        height: auto;
        padding-top: 50px;
        padding-bottom: 150px;
    }
    .image-box {
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;;
        overflow: hidden;
        width: 320px; 
        height: 320px; 
        max-width: 100%;
    }

    .image-item{
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover; /* Ensures the image covers the container without distortion */
        border: 1px solid #66fcf1;
    }


    .aboutMe_slide{
        height: 100vh;
        width: 100%;
        padding-top: 20px;
        background-color: #1F2833;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 10px;
    }
    
    .about_me-container1{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        /* margin: 30px; */
        border: 0px;
        width: 90%;
        text-align: center;
        margin-bottom: 10px;
    }
    .about_me-container1-image{
        padding: 0;
        margin: 0;        
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        margin-bottom: 30px;
    }
    .about_me-container1-image img{
        width: 210px;
        justify-content: center;
        align-content: center;
        box-shadow: 0px 3px 12px 0px #ccc;
    }
    
    .about_me-description{
        display: block;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .about_me-name{
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .about_me-name h1{
        color: #fff;
        font-size: 35px;
        font-family: "Josefin Sans",sans-serif;
        padding: 0;
        margin: 0;
    }
    
    .about_me-para{
        color: silver;
        margin: 0;
        padding: 15px;
        font-family: "Michroma", sans-serif;
        justify-content: center;
        text-align: justify;
    }
    .about_me-para p{
        font-size: 17px;
    }
    
    .about_me-details{
        font-family: "Michroma", sans-serif;
        color: aliceblue;
        justify-content: flex-start;
        text-align: justify;
        padding: 15px;
        margin: 0;
    }
    .about_me-details p{
        margin: 0;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    .cvdownload-button{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 15px;
        animation: pulse 1.5s infinite;
    }
    .cv-button{
        background-color: transparent;
        color: #66fcf1;
        padding: 10px 20px 10px 20px;
        font-family: "Michroma",sans-serif;
        border: 3px solid #66fcf1;
        border-radius: 10px;
        font-size: 20px;
        text-decoration: none;
    }
    
    .slide_2{
        height: auto;
        padding-bottom: 50px;
    }
    .skills-grid{
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        position: relative;
    }
    
}


@media (max-width) {
    .homepage-leftside{
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .leftside-content{
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #intro{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        padding: 0;
    }
    
}