/**
 * Industry Banner Component Styles
 * Matches the design with tag, title, description, button and image
 */

/* Banner Section */
.industry-banner-section {
  background: linear-gradient(135deg, #e8f0fc 0%, #f5f0f7 50%, #fce8ef 100%);
  padding: 30px 0;
  overflow: hidden;
}

/* Banner Content */
.industry-banner-content {
  padding: 40px 0;
}

/* Tag/Chip Style */
.industry-banner-tag {
  display: inline-block;
  background: linear-gradient(90.08deg, rgba(24, 92, 183, 0.06) 0.06%, rgba(203, 11, 36, 0.06) 99.93%);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.industry-banner-tag-text {
  background: linear-gradient(to right, #0057d9, #d40000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.industry-banner-tag-highlight {
  background: linear-gradient(130deg, #2e46b6 0%, #df062c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Title */
.industry-banner-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: capitalize;
}

/* Description */
.industry-banner-desc {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Sub Description */
.industry-banner-sub-desc {
  font-size: 0.95rem;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Button Wrapper */
.industry-banner-btn-wrapper {
  margin-top: 10px;
}

/* Button */
.industry-banner-btn {
  display: inline-block;
  background: linear-gradient(90deg, #c62a4f 0%, #3a3f99 100%);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(198, 42, 79, 0.3);
}

.industry-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 42, 79, 0.4);
  color: #fff;
}

/* Image Wrapper */
.industry-banner-image-wrapper {
  text-align: center;
  padding: 20px;
}

/* Image */
.industry-banner-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ========================================
   Responsive Styles
   ======================================== */

/* Tablet - 992px and below */
@media (max-width: 992px) {
  .industry-banner-section {
    padding: 50px 0;
  }

  .industry-banner-title {
    font-size: 2.2rem;
  }

  .industry-banner-content {
    padding: 30px 0;
  }
}

/* Mobile Landscape - 768px and below */
@media (max-width: 768px) {
  .industry-banner-section {
    padding: 40px 0;
  }

  .industry-banner-content {
    text-align: center;
    padding: 20px 0;
  }

  .industry-banner-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .industry-banner-desc,
  .industry-banner-sub-desc {
    text-align: center;
  }

  .industry-banner-btn-wrapper {
    text-align: center;
  }

  .industry-banner-image-wrapper {
    margin-top: 30px;
  }

  .industry-banner-image {
    max-width: 90%;
  }
}

/* Mobile Portrait - 576px and below */
@media (max-width: 576px) {
  .industry-banner-section {
    padding: 30px 0;
  }

  .industry-banner-tag {
    font-size: 13px;
    padding: 6px 16px;
  }

  .industry-banner-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .industry-banner-desc {
    font-size: 0.95rem;
  }

  .industry-banner-sub-desc {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .industry-banner-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .industry-banner-image {
    max-width: 100%;
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  .industry-banner-title {
    font-size: 1.3rem;
  }

  .industry-banner-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }
}
