/* Projects Section */
#projects {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.project {
    width: 80%;
    max-width: 800px;
    border: 3px solid black;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project h2 {
    color: black;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    animation: none;
    background-color: transparent;
}

/*slideshow time*/
.slideshow-container {
    position: relative;
    max-width: 100%;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center;
    background-color: whitesmoke;
}

.slide-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
}

.slide-button.prev {
    left: 10px;
}
.slide-button.next {
    right: 10px;
}
.slide-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.project p {
    color: black;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 25px;
    width: 100%;
    font-size: 20px;
}

.project-skills {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.project-skills img {
    width: 75px;
    height: 75px;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.project-skills img:hover {
    transform: scale(1.1);
}