:root {
    --animation-duration: 0.6s;
}

/* Hero Section Enhancement */
.hero-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

/* Service Cards Animation */
.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Tech Cards Enhancement */
.tech-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.tech-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.tech-card h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.tech-card ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
    transition: color 0.3s ease;
}

.tech-card ul li:last-child {
    border-bottom: none;
}

.tech-card:hover ul li {
    color: var(--text-dark);
}

/* Feature Cards Enhancement */
.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-card:hover::after {
    opacity: 0.1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-card,
    .tech-card,
    .feature-card {
        margin-bottom: 20px;
    }
    
    .hero-section::before {
        width: 150px;
        height: 150px;
    }
}