/* section_no6_new.css */
.tech-stack-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.tech-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.tech-card img {
    max-width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.tech-card p {
    margin: 0;
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

.inclass_content_area.no6 .info {
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 1.1em;
    color: #555;
    line-height: 1.7;
    background-color: #e9f5ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #007bff;
}

