.tech-section {
    background-color: #04316C;
    color: white;
    padding: 40px 20px;
    text-align: left;
}

.tech-section h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.tech-section p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 1200px;
}

.tech-logos {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    animation: slide 20s linear infinite;
}

.tech-logo {
    min-width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.tech-logo img {
    max-width: 100%;
    max-height: 70%;
    object-fit: contain;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-900px); /* Adjust based on content width */
    }
}

/* Pause animation on hover */
.slider-container:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .tech-section h1 {
        font-size: 1.8rem;
    }
    
    .tech-section p {
        font-size: 1rem;
    }
    
    .tech-logo {
        min-width: 120px;
        margin: 0 10px;
    }
}