




#nav{
    display: none;
}









#home {
    padding: 0 4vw;
}

.row {
    padding: 0 4vw;
    margin: 2vh 0;
}

.row h3 {
    font-size: 6vw; /* Larger intro text on smaller screens */
}

.row h1 {
    font-size: 16vw; /* Larger main heading on smaller screens */
}







.project .image-box h3{
    display: none;
}
.project-container {
    flex-direction: column;
    align-items: center;
    min-height: 116vh;
}

.projects {
    width: 100%;
}

.project {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}
.project .project-details-low{
    display: block;
}

.image-box {
    width: 100%;
    height: 100%;
    background-color: rgb(233, 233, 50); /* Set the background color of the image box */
    display: block;
    overflow: hidden;
    position: relative;
}
.project .image-box img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    margin-top: 0;
    transition: transform 0.3s ease;
}



.project-card {
    display: none;
    position: relative; /* Remove sticky effect */
    transform: none;
    width: 80%;
    max-width: 900px;
    flex-direction: row;
    gap: 20px;
    text-align: left;
}

.project-image {
    width: 40%;
    max-width: 350px;
}

.project-details {
    flex: 1;
}

.project-container {
    flex-direction: column;
    padding: 60px 5%;
}

.projects {
    width: 100%;
}

.project-card {
    display: none; /* Hide the sticky card */
}

.project .project-details-low {
    display: block; /* Show the details below each project */
    padding: 25px;
    width: 100%;
}

/* Fix image size in responsive view */
.project-preview {
    width: 100%;
    padding: 0 30px 30px;
    overflow: visible; /* Allow image to display fully */
}

.project-preview img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensure the image is fully displayed */
}



#skills {
    /* padding: 3vw 4vw; Adjust padding for tablets */
}

.skills-header {
    max-width: 90%;
    height: 25%;
}

.skills-header h2 {
    font-size: 5vw; 
    /* Adjust header text for tablet */
}

.skills-title .subheading {
    font-size: 2.4vw;
}

.skills-title .main-title {
    font-size: 8vw; 
}


.skills-list {
    gap: 3vw;
}

.skill-item {
    font-size: 3.5vw; 
    padding: 3vw 5vw; 
}





/* Aboute Section */
.about-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
}

.profile-image {
    width: 280px;
    height: 280px;
}

.main-title {
    font-size: 40px;
}

.social-links {
    justify-content: center;
}

/* Footer */
.footer-content {
    grid-template-columns: 1fr 1fr;
}

.footer-brand {
    grid-column: 1 / 3;
}

.footer-nav {
    grid-column: 1 / 2;
}

.footer-links {
    grid-column: 2 / 3;
}

.footer-contact {
    grid-column: 1 / 3;
    margin-top: 1rem;
}