/* ===== INDUSTRIES OVERVIEW ===== */
.ind-overview { padding: 100px 0; background: var(--light); }

.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.ind-card {
    background: var(--white);
    border-radius: 14px;
    padding: 30px 22px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border-bottom: 4px solid transparent;
}

.ind-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); border-bottom-color: var(--green); }

.ind-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue), #0077c2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind-card-icon i { font-size: 1.6rem; color: var(--white); }

.ind-card-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.ind-card-body p { font-size: 0.85rem; color: #666; line-height: 1.7; margin-bottom: 12px; }

.ind-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap 0.3s, color 0.3s;
}

.ind-card:hover .ind-link { color: var(--green); gap: 10px; }

/* ===== INDUSTRY DETAIL SECTIONS ===== */
.ind-detail { padding: 100px 0; background: var(--white); }
.ind-detail-alt { background: var(--light); }

.ind-detail-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.ind-detail-img {
    position: relative;
    border-radius: 14px;
    overflow: visible;
}

.ind-detail-img img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 20px 20px 0 var(--blue);
    display: block;
    height: 400px;
    object-fit: cover;
}

.ind-detail-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70px;
    height: 70px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(39,174,96,0.4);
}

.ind-detail-badge i { font-size: 1.8rem; color: var(--white); }

.ind-detail-text p { color: #555; margin-bottom: 25px; line-height: 1.8; }

.ind-apps, .ind-products { margin-bottom: 22px; }

.ind-apps h4, .ind-products h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ind-apps ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.ind-apps ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #555;
    font-weight: 500;
}

.ind-apps ul li i { color: var(--green); font-size: 0.8rem; flex-shrink: 0; }

.ind-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.ind-tags span {
    background: var(--white);
    border: 1.5px solid #ddd;
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    transition: 0.3s;
}

.ind-detail-alt .ind-tags span { background: var(--light); }

.ind-tags span:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ind-grid { grid-template-columns: repeat(2, 1fr); }
    .ind-detail-wrap { gap: 40px; }
}

@media (max-width: 768px) {
    .ind-overview { padding: 60px 0; }
    .ind-detail { padding: 60px 0; }
    .ind-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .ind-detail-wrap { grid-template-columns: 1fr; gap: 40px; }
    .ind-detail-alt .ind-detail-text { order: 1; }
    .ind-detail-alt .ind-detail-img { order: 2; }
    .ind-detail-img img { height: 280px; }
    .ind-apps ul { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .ind-grid { grid-template-columns: 1fr; }
}
