/* Custom styles for PC module */

/* Hero section gradient background */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* Feature icon hover effect */
.feature-icon {
    transition: transform 0.3s ease;
}

.card:hover .feature-icon {
    transform: scale(1.1);
}

/* Card hover effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

/* Ensure footer stays at bottom */
html, body {
    height: 100%;
}

/* Responsive utilities */
@media (min-width: 768px) {
    .w-md-50 {
        width: 50% !important;
    }
}
