/* Fix for the Latest Projects section on the home page */
.single-recent-blog .thumb {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-recent-blog .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fix for the Projects section in the portfolio page */
.single-portfolio .thumb {
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-portfolio .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fix for the portfolio grid to prevent footer overlap */
.portfolio-area .filters-content .row.grid {
    min-height: 700px; /* Set a minimum height to ensure content doesn't get overlapped */
    position: relative;
}

/* Fix to ensure proper isotope initialization */
.portfolio-area {
    overflow: hidden;
    position: relative;
    padding-bottom: 50px; /* Add extra padding at bottom to prevent overlap */
}

/* Fix for the Archive page */
.portfolio-photo {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Fix for working projects swiper */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
}

.single-working-project {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}

.single-working-project .thumb {
    height: 250px;
    overflow: hidden;
}

.single-working-project .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-working-project .description {
    padding: 20px;
}

.swiper-button-prev, .swiper-button-next {
    color: #222;
}

.swiper-pagination-bullet-active {
    background: #222;
}

/* Fix for skills section */
.skill-left, .skill-right {
    margin-bottom: 30px;
}

/* Fix for spacing */
hr {
    margin: 50px 0;
    border-top: 1px solid #ddd;
}

/* Fix for Other Platforms section */
.single-price .top-part {
    text-align: center;
    padding: 30px 0;
}

.single-price .top-part img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Fix for timeline section */
.timeline ul li .content img {
    max-height: 80px;
    width: auto;
} 