Technology section styles .technology {
    background: var(--light);
}

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

.tech-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.tech-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

/* Ensure the AI camera trap image uses full card space like others */
.tech-image.ai-camera-trap {
    height: 240px;
}

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

.tech-card:hover .tech-image img {
    transform: scale(1.1);
}

.tech-content {
    padding: 2rem;
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tech-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.tech-content p {
    color: #64748b;
    line-height: 1.7;
}