/* Topic Hover Effects for IT Solutions, Collaboration, and Products Pages */

/* Common styles for topic items */
.solution-item, .collaboration-item, .product-item, 
.solution-category, .category-content, .collaboration-category {
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Hover effects */
.solution-item:hover, .collaboration-item:hover, .product-item:hover,
.solution-category:hover, .category-content:hover, .collaboration-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Icon container effect */
.solution-item .solution-icon, 
.collaboration-item .collaboration-icon,
.product-item .product-icon,
.category-image {
    transition: all 0.3s ease;
}

.solution-item:hover .solution-icon, 
.collaboration-item:hover .collaboration-icon,
.product-item:hover .product-icon,
.solution-category:hover .category-image,
.collaboration-category:hover .category-image {
    transform: scale(1.05);
}

/* Title effect */
.solution-item h3, 
.collaboration-item h3,
.product-item h3,
.solution-category h3,
.collaboration-category h3,
.category-details h3 {
    position: relative;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.solution-item:hover h3, 
.collaboration-item:hover h3,
.product-item:hover h3,
.solution-category:hover h3,
.collaboration-category:hover h3,
.category-details:hover h3 {
    color: #0056b3;
}

.solution-item h3:after, 
.collaboration-item h3:after,
.product-item h3:after,
.solution-category h3:after,
.collaboration-category h3:after,
.category-details h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #0056b3;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.solution-item:hover h3:after, 
.collaboration-item:hover h3:after,
.product-item:hover h3:after,
.solution-category:hover h3:after,
.collaboration-category:hover h3:after,
.category-details:hover h3:after {
    width: 50px;
}
