/* Page: Industries | /css/pages/industries.css */

/* ── HERO HEADING ── */
.hero-heading {
  text-align: center;
  padding: 160px 60px 60px;
  margin-top: 60px;
}

.hero-heading h1 {
  font-family: var(--font-secondary);
  font-size: var(--text-7xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: -3.84px;
  color: var(--color-black);
}

.hero-heading h1 span {
  display: block;
}

.hero-heading h1 .grad-text {
  background: var(--color-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── TABS ── */
.tabs-wrapper {
  padding: 0 60px 50px;
  z-index: var(--z-overlay);
  padding-top: 12px;
  display: flex;
  justify-content: center;
}

.tabs {
  display: flex;
  gap: 10px;
  background: var(--color-grey-400);
  border-radius: 50px;
  padding: 8px;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.tab-btn {
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: var(--font-primary);
  font-size: var(--text-tab);
  font-weight: var(--weight-semibold);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
}

.tab-btn.active {
  background: var(--color-accent);
  color: var(--color-white);
}

.tab-btn:hover:not(.active) {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-black);
}

/* ── INDUSTRY SECTION ── */
.industry-section {
  display: none;
  padding: 80px var(--space-18);
  max-width: 1440px;
  margin: var(--z-base) auto;
}

.industry-section.active {
  display: flex;
  gap: 100px;
  align-items: center;
}

/* ── IMAGE AREA ── */
.industry-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 600px;
  background: var(--color-grey-400);
  border: 1px solid var(--color-grey-900);
  box-shadow: var(--shadow-lg);
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── CONTENT ── */
.industry-content {
  flex: 1;
}

.industry-content h2 {
  font-family: var(--font-secondary);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  margin-bottom: 24px;
  letter-spacing: -1.92px;
  color: var(--color-black);
}

.industry-content p {
  font-family: var(--font-primary);
  font-weight: var(--weight-regular);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  letter-spacing: -3%;
  color: rgba(117, 117, 117, 1);
}

/* ── KEY SOLUTIONS CARD ── */
.solutions-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.solutions-card h3 {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  margin-bottom: 24px;
  color: var(--color-black);
  letter-spacing: -0.48px;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  color: rgba(117, 117, 117, 1) !important;
}

.solution-item:last-child {
  margin-bottom: var(--z-base);
}

.radio-icon {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-grey-900);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background: var(--color-white);
}

.radio-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #007AFF;
}

.fqicon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .navbar-outer {
    padding: 14px 40px;
  }

  .industry-section.active {
    gap: 40px;
    padding: 60px 40px;
  }
}

@media (max-width: 992px) {
  .industry-section.active {
    flex-direction: column;
  }

  .industry-image {
    height: 400px;
    width: 100%;
  }

  .tabs {
    flex-wrap: wrap;
    border-radius: 14px;
    justify-content: center;
  }

  .tab-btn {
    font-size: 13px;
    padding: 9px 17px;
  }
}
