/* TechLab Projects Styles */
.techlab-section-1,
.techlab-section-2,
.techlab-section-3,
.techlab-section-4,
.techlab-section-5,
.techlab-section-6 {
    margin-bottom: 40px;
    padding: 20px;
}

.techlab-section-title {
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
}

.techlab-section-subtitle {
    color: #666;
    margin-bottom: 20px;
    font-size: 18px;
}

/* Section 1 Styles */
.techlab-logo {
    margin-bottom: 20px;
}

.techlab-logo img {
    max-width: 200px;
    height: auto;
}

.techlab-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.techlab-btn:hover {
    background: #005a87;
}

/* Section 2 Styles */
.techlab-section-2{
    text-align: center;
}
.techlab-repeatable-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.techlab-meta-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.meta-text {
    font-size: 16px;
    margin-bottom: 5px;
}

.meta-number {
    font-size: 24px;
    font-weight: bold;
    color: #007cba;
    margin-bottom: 5px;
}

.meta-percentage {
    font-size: 20px;
    color: #28a745;
    margin-bottom: 5px;
}

.meta-title {
    font-size: 14px;
    color: #666;
}

/* Section 3 Styles */
.techlab-section-description {
    margin-bottom: 30px;
    line-height: 1.6;
}

.techlab-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.techlab-gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Section 4 Styles */
.techlab-faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.techlab-faq-question {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.techlab-faq-answer {
    color: #666;
    line-height: 1.6;
}

/* Section 5 Styles */
.techlab-process-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

.techlab-process-step {
    font-weight: bold;
    margin-right: 10px;
    color: #007cba;
}

.techlab-process-title {
    color: #333;
}

/* Section 6 Styles */
.techlab-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.techlab-solution-item {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
}

.techlab-solution-image {
    margin-bottom: 15px;
}

.techlab-solution-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.techlab-solution-title {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.techlab-solution-description {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .techlab-repeatable-meta,
    .techlab-gallery,
    .techlab-solutions {
        grid-template-columns: 1fr;
    }
    
    .techlab-process-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .techlab-process-step {
        margin-bottom: 5px;
    }
}