/* ==========================================
   ARAVAA GLOBAL - INDUSTRIES PAGE CSS
   ========================================== */

/* Industries Hero Section */
.industries-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding-top: 170px;
  padding-bottom: 110px;
  background-color: var(--bg-light);
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.industries-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.industries-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.industries-hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.industries-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
  color: var(--dark-navy);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.industries-hero-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.industries-hero-media {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  max-height: 420px;
}

.industries-hero-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.industries-hero-media:hover img {
  transform: scale(1.04);
}

/* 8-Grid Industries We Serve */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.industry-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(29, 97, 231, 0.3);
}

.industry-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--dark-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.industry-icon-circle img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.industry-card-title {
  font-size: 1.25rem;
  color: var(--dark-navy);
  margin-bottom: 12px;
}

.industry-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.industry-card-media {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.industry-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Why Choose Us Feature Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background-color: var(--bg-card);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--dark-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.why-card h4 {
  font-size: 1.2rem;
  color: var(--dark-navy);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Industries Responsive Layout */
@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .industries-hero {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .industries-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .industries-hero-content {
    align-items: flex-start;
    text-align: left;
  }

  .industries-hero-media {
    max-height: 340px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .industries-hero {
    padding-top: 110px;
    padding-bottom: 48px;
  }

  .industries-hero-title {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
    margin-bottom: 14px;
  }

  .industries-hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .industries-hero-media {
    max-height: 240px;
  }

  .industries-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}
