/* Tech Stack Section */
.tech-stack-section {
    width: 100%;
    background-color: #f9f9f9; /* Light background */
    padding: 30px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.tech-stack-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.tech-stack-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222; /* Dark text for contrast */
    margin-bottom: 10px;
}

.tech-stack-subtitle {
    font-size: 1.2rem;
    color: #555; /* Subtle text color */
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.6;
}

/* Image Row */
.tech-stack-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Space between images */
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
}

.tech-stack-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.tech-stack-image:hover {
    transform: scale(1.1); /* Slight zoom effect */
}