*{
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background: #ffffff;
  color: #1f1f1f;
}

.industries-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* INTRO */
.intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.intro h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 14px;
}

.desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* GRID */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.industry-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.industry-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.industry-card h3 {
  font-size: 18px;
  margin: 16px;
}

.industry-card p {
  font-size: 14px;
  color: #555;
  margin: 0 16px 16px;
  line-height: 1.5;
}

.industry-card a {
  margin: auto 16px 16px;
  font-size: 14px;
  text-decoration: none;
  color: #4f6cff;
  font-weight: 600;
}

/* TYPICAL */
.typical {
  max-width: 800px;
  margin: 0 auto 60px;
}

.typical h2 {
  text-align: center;
  margin-bottom: 20px;
}

.typical ul {
  padding-left: 20px;
}

.typical li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* PAN INDIA */
.pan-india {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.pan-india h2 {
  margin-bottom: 10px;
}

.pan-india p {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  background: #6b78ff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .intro h1 {
    font-size: 26px;
  }
}

