.industry-card {
   display: block;
   position: relative;
   overflow: hidden;
   border-radius: 6px;
   box-shadow: 0 4px 15px rgba(0,0,0,0.1);
   text-decoration: none;
   transition: all 0.4s ease;
   height: 280px;
}

.industry-card:hover {
   box-shadow: 0 10px 30px rgba(0,0,0,0.2);
   transform: translateY(-5px);
}

.industry-img {
   width: 100%;
   height: 100%;
   overflow: hidden;
}

.industry-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
}

.industry-card:hover .industry-img img {
   transform: scale(1.1);
}

.industry-overlay {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   padding: 20px;
   background: linear-gradient(to top, rgba(0,51,102,0.95) 0%, rgba(0,51,102,0.7) 60%, rgba(0,51,102,0) 100%);
   color: #fff;
   display: flex;
   justify-content: space-between;
   align-items: center;
   transition: all 0.3s ease;
}

.industry-overlay h4 {
   color: #fff;
   margin: 0;
   font-size: 18px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.industry-arrow {
   font-size: 22px;
   opacity: 0;
   transform: translateX(-10px);
   transition: all 0.3s ease;
   color: #fff;
}

.industry-card:hover .industry-arrow {
   opacity: 1;
   transform: translateX(0);
}

.industry-card:hover .industry-overlay {
   background: linear-gradient(to top, rgba(0,51,102,1) 0%, rgba(0,51,102,0.85) 60%, rgba(0,51,102,0.3) 100%);
}

@media (max-width: 768px) {
   .industry-card { height: 240px; }
   .industry-overlay h4 { font-size: 16px; }
}