.core-technologies-container {
    background-color: #f8fafc;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.tech-showcase {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.tech-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tech-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: clip-path 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tech-shape {
    position: absolute;
    background-color: rgba(52, 152, 219, 0.15);
    transition: all 1s ease-out;
}

.tech-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.tech-content p {
    padding: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}
.tech-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.2rem;
    transform: translateY(20px) scale(0.9);
}

.tech-paragraph:nth-child(2) {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s;
}

.tech-paragraph:nth-child(3) {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s;
}

.tech-paragraph:nth-child(4) {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s;
}

/* 响应式设计 */
@media (min-width: 768px) {
    .tech-showcase {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }
    .tech-image-container {
        height: 400px;
    }
}
