/* Solution Detail Page - Solid Dosage Form */

/* Scroll-reveal animation */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}
[data-animate][data-delay="300"] {
  transition-delay: 0.3s;
}
[data-animate][data-delay="600"] {
  transition-delay: 0.6s;
}
[data-animate][data-delay="900"] {
  transition-delay: 0.9s;
}

.solution-detail * {
  box-sizing: border-box;
}

.solution-detail {
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  color: #1a1a1a;
}

.solution-detail .sol-container {
  width: min(1680px, calc(100vw - 240px));
  margin: 0 auto;
}

/* Banner */
.sol-banner {
  position: relative;
  min-height: 600px;
  margin-top: -88px;
  padding-top: 88px;
  background: url("../images/hero-bg.png") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.sol-banner .sol-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 105, 125, 0.82), rgba(22, 105, 125, 0.3));
}

.sol-banner .sol-hero-pills {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(58vw, 980px);
  z-index: 0;
}

.sol-banner .sol-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 120px;
}

.sol-banner .sol-hero-content h1 {
  margin: 0;
  font-size: 56px;
  letter-spacing: 1px;
}

.sol-banner .sol-hero-content p {
  max-width: 980px;
  margin: 26px auto 0;
  line-height: 1.8;
  font-size: 15px;
}

/* Sections */
.sol-section {
  padding: 72px 0;
}

.sol-section-white {
  background: #ffffff;
}

.sol-section-gray {
  background: #ededed;
}

.solution-detail h2 {
  margin: 0;
  font-size: 48px;
  text-align: center;
}

.solution-detail .sol-subtitle {
  text-align: center;
  margin: 14px 0 48px;
  font-size: 24px;
  color: #1a1a1a;
  font-weight: 400;
}

/* Dosage Blocks */
.sol-dosage-block {
  margin-bottom: 48px;
}

.sol-dosage-block h3 {
  margin: 0 0 14px;
  color: #f58600;
  font-size: 30px;
}

.sol-dosage-block p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.9;
}

.sol-flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
/* 1111111111111111111111111111111 */
 /* .sol-flow-grid img,
.sol-flow-wide {
  width: 100%;
  background: #fff;
} */

 .sol-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.sol-industry-grid article {
  background: #fff;
  border: 1px solid #e6e6e6;
  text-align: center;
  padding-bottom: 14px;
  overflow: hidden;
}

.sol-industry-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.sol-industry-grid h4 {
  margin: 12px 0 0;
  font-size: 18px;
}


.sol-equipment-swiper-wrap {
  position: relative;
  padding: 20px 50px;
  overflow: hidden;
}

.sol-equipment-swiper {
  overflow: visible !important;
}

.sol-equipment-swiper article {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  text-align: center;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.sol-equipment-swiper article.device-hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.sol-device-photo {
  width: 100%;
  aspect-ratio: 404 / 498;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin-bottom: 14px;
}

.sol-device-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sol-equipment-swiper h4 {
  margin: 0;
  font-size: 17px;
}

/* Swiper nav buttons */
.sol-swiper-prev,
.sol-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  color: #666;
  opacity: 1 !important;
}

.sol-swiper-prev:hover,
.sol-swiper-next:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.sol-swiper-prev {
  left: 0;
}

.sol-swiper-next {
  right: 0;
}

/* CTA Button */
.sol-cta {
  display: block;
  margin: 46px auto 0;
  border: 0;
  background: #f58600;
  color: #fff;
  border-radius: 999px;
  padding: 12px 30px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  width: fit-content;
}

.sol-cta:hover {
  background: #e07800;
  color: #fff;
}
/* 1111111111111111111111111111111111111 */
/* Responsive - 1024px */
@media (max-width: 1024px) {
  .sol-banner .sol-hero-content h1 {
    font-size: 42px;
  }

  .solution-detail h2 {
    font-size: 38px;
  }

}

/* Responsive - 768px */
@media (max-width: 768px) {
  .solution-detail .sol-container {
    width: min(1680px, calc(100vw - 56px));
  }

  .sol-banner {
    min-height: 520px;
  }

  .sol-banner .sol-hero-content {
    padding-top: 82px;
  }

  .sol-banner .sol-hero-content h1 {
    font-size: 34px;
  }

  .sol-flow-grid,
  .sol-industry-grid {
    grid-template-columns: 1fr;
  }

  .sol-device-photo {
    padding: 16px;
  }
}
