/* Industry */
.industries .title {
  font-family: "FS Magistral";
  font-weight: 800;
  font-size: 1.75rem;
}

.industries .industry-slide {
  padding: 3.125rem;
  background-image: url("/public/frontend/images/background-industry.png");
  background-size: cover;
  border-radius: 1.875rem;
  margin-bottom: 2rem;
}

.industries .industry-card {
  background: #ffffff1a;
  border: 0.5px solid #ffffff;
  border-radius: 20px;
  flex: auto;

  .industry-describe {
    color: #ffffff;
  }
}

.industries .industries-nav {
  gap: 10px;
}

.industries .industry-btn {
  width: 122px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #03017E1A;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industries .industry-btn:hover {
  background: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.industries .industry-btn img {
  flex-shrink: 0;
  border-radius: 20px;
}

.industries .industry-btn span {
  font-size: 14px;
}

.industries .industry-name {
  font-family: FS Magistral;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
}

/* Contact */
.industry-contact {
  .container {
    position: relative;
    z-index: 2;
  }

  .contact-content {
    padding-top: 60px;
    padding-bottom: 92px;
    background-image: url("/public/frontend/img/solution/contact-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 30px;
  }

  .contact-title {
    font-family: "FS Magistral";
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;

    @media (max-width: 768px) {
      font-size: 1rem;
    }
  }

  .contact-subtitle {
    font-weight: 400;
    opacity: 0.9;
  }

  .contact-btn {
    background: #ffffff;
    color: var(--tm);
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;

    &:hover {
      opacity: 0.8;
      transform: translateY(-2px);
      color: var(--tm);
    }

    @media (max-width: 768px) {
      padding: 10px 24px;
      font-size: 0.9rem;
    }
  }
}
