/* Styling for the Tech Icons Carousel */

.tech-icons-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px 0;
}


.swiper-container {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.tech-icon img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.tech-icon p {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 10px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #0073aa;
}

 
