/* Enhanced Technology Section */
.tech-section-enhanced {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f0f7ff 100%);
    padding: 100px 0;
}

.tech-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tech-card-enhanced {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid #f0f3f5;
}

.tech-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.tech-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tech-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.tech-card-content {
    padding: 35px;
}

.tech-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tech-card-enhanced:hover .tech-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.tech-icon-box i {
    font-size: 2rem;
    color: #fff;
}

.tech-card-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--top-bar-bg);
    margin-bottom: 15px;
}

.tech-card-content>p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tech-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.tech-features li:last-child {
    border-bottom: none;
}

.tech-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .tech-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .tech-card-image {
        height: 200px;
    }

    .tech-card-content {
        padding: 25px;
    }

    .tech-card-content h3 {
        font-size: 1.4rem;
    }

    .tech-icon-box {
        width: 60px;
        height: 60px;
    }

    .tech-icon-box i {
        font-size: 1.5rem;
    }
}