:root {
    --primary-color: #5e3bee;
    --secondary-color: #b0a4ff;
    --dark-color: #2d2b42;
    --light-color: #f8f9fa;
}

.tech-container {
    width: 100%;
    max-width: 1200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 20px;
}

.tech-section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 20px;
}

.section-title h2 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.title-shape {
    width: 120px;
    margin: 0 auto;
    color: var(--primary-color);
}

.tech-box{
    text-align: center;
    padding: 1.5rem 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.tech-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(94, 59, 238, 0.15);
}

.tech-logo {
    height: 60px;
    width: auto;
    margin: 0 auto 1rem;
    object-fit: contain;
    transition: all 0.3s ease;
}

.tech-box:hover .tech-logo {
    transform: scale(1.1);
}

.tech-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--dark-color);
    font-weight: 600;
}

.tech-animation {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .tech-box {
        padding: 1.25rem 0.5rem;
    }
}

@media (max-width: 768px) {
    .tech-section {
        padding: 2rem 0;
    }

    .col-6 {
        padding: 0.5rem;
    }

    .tech-logo {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .tech-logo {
        height: 45px;
    }

    .tech-box h3 {
        font-size: 1rem;
    }
}