.projects-details-carousel {
    background: var(--light-color);
}
.mobile-slider{
margin-bottom: 30px;
}
.tags_projects a{
    padding: 0.7rem;
    background: var(--white-color);
    border-radius: 5px;
    color: var(--second-color);
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
    box-shadow: var(--boxShadow);
    margin-block: 15px;
}
.mobile-container {
    position: relative;
    width: 300px;
    height: 600px;
    margin: auto;
}

.mobile-frame {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.swiper-container {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 90%;
    height: auto;
    overflow: hidden;
    z-index: 1;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_screen {
    position: relative;
    padding: 33px 0;
    overflow: hidden;
    text-align: center;
    height: 600px;
}

.home_screen:before {
    background: url(../images/project-details/Background.png) no-repeat;
    position: absolute;
    content: "";
    background-size: 100%;
    width: 100%;
    left: 0;
    right: 0;
    height: 600px;
    top: 0;
}

.website-preview {
    width: calc(100% - 235px);
    margin: auto;
    height: 470px;
    overflow-y: scroll;
    z-index: 20;
    position: relative;
}

.website-preview img {
    width: 100%;
    margin: auto;
}


.banner-mockup {
    margin: 20px auto;
}

.banner-mockup img {
    border-radius: 20px;
    min-width: 100%;
    margin: 20px auto;
    height: 600px;
    object-fit: cover;
}
/* 
.screenshot-pages {
    margin-top: 30px;

}

.screenshot-item {
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: var(--boxShadow);
}

.screenshot-item .screenshot-preview {
    height: 400px;
    min-width: 100%;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    border-radius: 10px;
}

.screenshot-item:hover {
    transform: translate(0, -8px);
}

.screenshot-item:hover .screenshot-preview {
    background-position: bottom;
    transition: all 4s ease-in-out;
}

.screen-shot-heading {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0 0 10px 10px;
}

.screen-shot-heading h3 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.screenshot-preview {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
}

.screenshot-preview:hover {
    transform: scale(1.05);
}

.screen-shot-heading {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
} */

.related-img {
    border-radius: 10px;
    box-shadow: var(--boxShadow);
}

.related-img img {
    border-radius: 10px;
    min-width: 100%;
    height: 150px;
}

.related-heading {
    font-size: 26px;
    color: var(--main-color);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 40px;
    position: relative;
}

.related-heading::before {
    position: absolute;
    content: "";
    bottom: -10px;
    left: 0;
    width: 300px;
    height: 5px;
    background: linear-gradient(to right, var(--main-color), var(--second-color));
    transform: skewX(-30deg);
}

.swiper-pagination {
    position: absolute;
    bottom: 10px !important;
    width: 50% !important;
    max-width: 80% !important;
    left: 25% !important;
    height: 6px;
    background: #ccc;
    border-radius: 3px !important;
    cursor: pointer;
    overflow: hidden;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active{
    position: absolute;
    width: auto !important;
    border-radius: 0;
    padding: 10px; 
    background-color: var(--main-color);
}