/* Our Technologies Scrolling Section */
#technologies {
    margin: 2rem auto;
    padding: 2rem 0;
    text-align: center;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.65);
    /* background-color: rgba(255, 255, 255, 0.44); */
    border-radius: 8px;
}

#technologies h4 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Scroll container */
.tech-scroll {
    display: flex;
    gap: 1rem;
    animation: scroll 60s linear infinite;
    align-items: center;
    padding: 1rem 0;
    width: max-content;
}

/* Image styling */
.tech-scroll img {
    height: 60px; /* Fixed height for uniformity */
    width: auto;  /* Auto width to maintain aspect ratio */
    object-fit: contain;
    border-radius: 5px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); */
    transition: transform 0.3s;
}

/* Hover effect */
.tech-scroll img:hover {
    transform: scale(1.1);
}

/* Scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
