.tech-activities-section {
    padding: 2rem 0;
}

.tech-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tech-section-title {
    text-align: center;
    color: black;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.tech-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.8);
    border-radius: 10px;
}
.big-wrapper{
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.tech-tab-button {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 10px;
}

.tech-tab-button:hover {
    color: black;
}

.tech-tab-button.active {
    background: black;
    color: white;
}

.tech-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-tab-content.active {
    display: block;
    opacity: 1;
}

.tech-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;

    height: 400px;
}

.tech-content-text {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tech-content-heading {
    color: black;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tech-lead-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.tech-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.tech-feature-item {
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: #4a4a4a;
    font-size: 0.9rem;
}

.tech-feature-item::before {
    content: "→";
    position: absolute;
    left: 0;
    color: black;
}

.tech-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: auto;
    margin-bottom: 1.5rem;
}

.tech-stat-box {
    text-align: center;
    padding: 0.75rem;
}

.tech-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 0.25rem;
}

.tech-stat-label {
    color: #666;
    font-size: 0.8rem;
}

.tech-action-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: black;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-align: center;
    border: 2px solid black;
    border-radius: 10px;
}

.tech-action-button:hover {
    background: transparent;
    color: black;
}

.tech-content-image {
    height: 100%;
    overflow: hidden;
}

.tech-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .tech-content-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .tech-content-image {
        height: 300px;
    }

    .tech-feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tech-activities-section {
        padding: 1.5rem 0;
    }

    .tech-section-title {
        font-size: 1.75rem;
    }

    .tech-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .tech-content-image {
        height: 250px;
    }
}
