.inner-banner {
  position: relative;
  padding: 150px 0 110px;
  background-image: linear-gradient(120deg, rgba(11, 34, 57, 0.88), rgba(235, 68, 56, 0.6)), url("../img/inner-page/back.jpeg");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.inner-banner::before,
.inner-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(2px);
}

.inner-banner::before {
  width: 280px;
  height: 280px;
  top: -70px;
  right: 10%;
}

.inner-banner::after {
  width: 180px;
  height: 180px;
  bottom: -50px;
  left: 8%;
}

.inner-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.inner-banner__content h1 {
  color: var(--white);
  margin-bottom: 14px;
  text-transform: capitalize;
}

.breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.breadcrumb-list a,
.breadcrumb-list span {
  color: inherit;
  font-size: 15px;
  font-weight: 500;
}

.page-section {
  padding: 120px 0;
}

.page-section--tight {
  padding-top: 0;
}

.section-surface {
  padding: 34px;
  border: 1px solid rgba(11, 34, 57, 0.08);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(11, 34, 57, 0.08);
}

.section-surface--dark {
  background: linear-gradient(135deg, #0b2239, #183f62);
  color: var(--white);
}

.section-surface--dark h2,
.section-surface--dark h3,
.section-surface--dark p,
.section-surface--dark li,
.section-surface--dark span {
  color: inherit;
}

.section-surface--dark .info-card,
.section-surface--dark .policy-card,
.section-surface--dark .contact-card,
.section-surface--dark .application-card {
  color: var(--header);
}

.section-surface--dark .info-card h3,
.section-surface--dark .policy-card h3,
.section-surface--dark .contact-card h3,
.section-surface--dark .application-card h3,
.section-surface--dark .info-card h4,
.section-surface--dark .policy-card h4,
.section-surface--dark .contact-card h4,
.section-surface--dark .application-card h4 {
  color: var(--header);
}

.section-surface--dark .info-card p,
.section-surface--dark .policy-card p,
.section-surface--dark .contact-card p,
.section-surface--dark .application-card p,
.section-surface--dark .info-card a,
.section-surface--dark .policy-card a,
.section-surface--dark .contact-card a,
.section-surface--dark .application-card a {
  color: var(--text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--theme2);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.intro-copy {
  max-width: 620px;
}

.split-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.split-visual__stack {
  display: grid;
  gap: 22px;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 280px;
  box-shadow: 0 16px 40px rgba(11, 34, 57, 0.12);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover img {
  transform: scale(1.06);
}

.stat-band,
.info-grid,
.certificate-grid,
.gallery-grid,
.application-grid,
.contact-grid,
.product-grid,
.policy-grid {
  display: grid;
  gap: 24px;
}

.stat-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.stat-card,
.info-card,
.contact-card,
.policy-card,
.application-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(11, 34, 57, 0.08);
  background: linear-gradient(180deg, #ffffff, #fff6ef);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.stat-card::before,
.info-card::before,
.contact-card::before,
.policy-card::before,
.application-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -65% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(245, 186, 121, 0.18);
  transition: transform 0.35s ease;
}

.stat-card:hover,
.info-card:hover,
.contact-card:hover,
.policy-card:hover,
.application-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(11, 34, 57, 0.12);
  border-color: rgba(235, 68, 56, 0.18);
}

.stat-card:hover::before,
.info-card:hover::before,
.contact-card:hover::before,
.policy-card:hover::before,
.application-card:hover::before {
  transform: scale(1.18);
}

.stat-card h3 {
  font-size: 42px;
  color: var(--header);
}

.stat-card p,
.info-card p,
.contact-card p,
.policy-card p,
.application-card p {
  margin-bottom: 0;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(11, 34, 57, 0.08);
  box-shadow: 0 16px 35px rgba(11, 34, 57, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 42px rgba(11, 34, 57, 0.14);
}

.product-card__media {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.08);
}

.product-card__body {
  padding: 28px;
}

.product-card__body h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.product-card__body p {
  margin-bottom: 18px;
}

.pill-list,
.sidebar-product-list,
.detail-highlights,
.applications-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span,
.detail-highlights span {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(245, 186, 121, 0.18);
  color: var(--header);
  font-size: 14px;
  font-weight: 600;
}

.product-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
}

.product-sidebar,
.contact-form-card,
.map-card {
  position: sticky;
  top: 120px;
}

.sidebar-panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0b2239, #173654);
  box-shadow: 0 24px 45px rgba(11, 34, 57, 0.18);
}

.sidebar-panel h3,
.sidebar-panel p {
  color: var(--white);
}

.sidebar-product-list {
  flex-direction: column;
  margin-top: 24px;
}

.sidebar-product-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease, background 0.3s ease;
}

.sidebar-product-list a:hover,
.sidebar-product-list a.is-active {
  transform: translateX(6px);
  background: rgba(245, 186, 121, 0.22);
  color: var(--white);
}

.product-detail__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: center;
}

.product-detail__image {
  height: 420px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 22px 42px rgba(11, 34, 57, 0.16);
}

.product-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.data-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(11, 34, 57, 0.08);
  vertical-align: top;
}

.data-table th {
  background: #fff4ea;
  color: var(--header);
  font-size: 15px;
  font-weight: 700;
}

.data-table td {
  color: var(--text);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(11, 34, 57, 0.08);
  border-radius: 24px;
}

.application-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.certificate-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.certificate-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid rgba(11, 34, 57, 0.08);
  box-shadow: 0 18px 38px rgba(11, 34, 57, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.certificate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(11, 34, 57, 0.16);
}

.certificate-card__media {
  display: flex;
  align-items: end;
  justify-content: flex-start;
  min-height: 260px;
  padding: 24px;
  /* background-image: linear-gradient(180deg, rgba(11, 34, 57, 0.2), rgba(11, 34, 57, 0.78)), url("../new/back.jpeg"); */
  background-size: cover;
  background-position: center;
}

.certificate-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.certificate-card__body {
  padding: 24px;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 28px;
  box-shadow: 0 20px 38px rgba(11, 34, 57, 0.14);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card__overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 14px 18px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(11, 34, 57, 0.65);
  backdrop-filter: blur(10px);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover .gallery-card__overlay {
  background: rgba(235, 68, 56, 0.7);
}

.policy-grid,
.info-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-form-card,
.map-card {
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(11, 34, 57, 0.08);
  background: var(--white);
  box-shadow: 0 20px 40px rgba(11, 34, 57, 0.08);
}

.form-clt input,
.form-clt textarea {
  width: 100%;
  min-height: 56px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(11, 34, 57, 0.12);
  background: #fff9f4;
}

.form-clt textarea {
  min-height: 160px;
  resize: vertical;
}

.map-card iframe {
  width: 100%;
  min-height: 480px;
  border: 0;
  border-radius: 20px;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(245, 186, 121, 0.14), rgba(235, 68, 56, 0.12));
  border: 1px solid rgba(235, 68, 56, 0.14);
}

.cta-strip p {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .product-grid,
  .gallery-grid,
  .certificate-grid,
  .policy-grid,
  .info-grid,
  .contact-grid,
  .application-grid,
  .stat-band,
  .product-detail__hero,
  .split-visual,
  .product-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-layout {
    align-items: start;
  }

  .product-sidebar,
  .contact-form-card,
  .map-card {
    position: static;
  }
}

@media (max-width: 991px) {
  .page-section {
    padding: 90px 0;
  }

  .product-grid,
  .gallery-grid,
  .certificate-grid,
  .policy-grid,
  .info-grid,
  .contact-grid,
  .application-grid,
  .stat-band,
  .product-detail__hero,
  .split-visual,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-card__media,
  .gallery-card,
  .certificate-card__media,
  .product-detail__image {
    height: auto;
    min-height: 280px;
  }

  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .inner-banner {
    padding: 120px 0 90px;
  }

  .section-surface,
  .sidebar-panel,
  .contact-form-card,
  .map-card {
    padding: 24px;
    border-radius: 22px;
  }

  .breadcrumb-list {
    gap: 8px;
    padding: 10px 14px;
  }

  .product-card__body,
  .certificate-card__body {
    padding: 22px;
  }
}
