/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #0d2b4e 0%, #1976c8 100%);
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.page-hero h1 span {
  background: linear-gradient(to right, #ffffff, #a8c8e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* BREADCRUMB */
.breadcrumb {
  background: #f3f7fc;
  padding: 14px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #667085;
}

.breadcrumb-inner a {
  color: #1976c8;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner i { font-size: 14px; color: #aaa; }

/* INDUSTRIES PAGE SECTION */
.industries-page-section {
  padding: 100px 24px;
  background: #fafbfc;
}

/* INDUSTRIES GRID */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

/* INDUSTRY CARD */
.ind-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
}

.ind-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(25,118,200,0.12);
  border-color: #1976c8;
}

/* IMAGE WRAPPER */
.ind-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.ind-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ind-card:hover .ind-img img {
  transform: scale(1.08);
}

/* HOVER OVERLAY with CTA */
.ind-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 43, 78, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ind-card:hover .ind-overlay {
  opacity: 1;
}

/* CARD BODY */
.ind-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ind-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(25,118,200,0.12), rgba(15,90,162,0.06));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1976c8;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.ind-card:hover .ind-icon {
  background: #1976c8;
  color: #fff;
}

.ind-body h3 {
  font-size: 19px;
  font-weight: 800;
  color: #0d2b4e;
  margin-bottom: 12px;
  line-height: 1.3;
}

.ind-body p {
  font-size: 14px;
  color: #667085;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

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

.ind-tags span {
  font-size: 12px;
  font-weight: 600;
  color: #1976c8;
  background: rgba(25,118,200,0.08);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(25,118,200,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ind-img { height: 180px; }
}
