html {
  overflow-x: hidden;
}

.inner-page {
  --ink: #0b2239;
  --gold: #dfc67c;
  --muted: #68717c;
  --soft: #f5f7fb;
  overflow-x: hidden;
}

.inner-page img {
  max-width: 100%;
  /* height: auto; */
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #0b2239;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,34,57,.94), rgba(11,34,57,.68), rgba(11,34,57,.28));
  z-index: -1;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.04);
  animation: heroZoom 9s ease-out forwards;
}

.page-hero .container {
  padding-top: 150px;
  padding-bottom: 74px;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.page-hero h1 {
  max-width: 850px;
  margin-top: 20px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(40px, 7vw, 86px);
  line-height: .96;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 710px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
}

.breadcrumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-weight: 700;
}

.breadcrumb-row a {
  color: #fff;
}

.section-pad {
  padding: 105px 0;
}

.section-pad-sm {
  padding: 80px 0;
}

.section-label {
  color: var(--theme2);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
  text-align: center;
}

.section-heading {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  margin-bottom: 20px;
  text-align: center;
}

/* Mobile Media Query */
@media screen and (max-width: 768px) {
  .section-heading {
    /* Lowers the minimum size to 24px and increases the growth rate (6vw) so it scales better on mobile */
    font-size: clamp(24px, 6vw, 30px); 
    line-height: 1.2; /* Slightly increased for better multi-line readability on narrow screens */
    margin-bottom: 15px; /* Slightly tighter bottom margin */
    text-align: left;
  }
}

/* Optional: Extra Small Mobile Devices (e.g., older iPhones) */
@media screen and (max-width: 480px) {
  .section-heading {
    font-size: 24px; /* Fixes the size to prevent text wrapping issues */
    line-height: 1.3;
  }
}

.lead-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.feature-card,
.policy-card,
.product-card,
.contact-card,
.spec-card,
.sidebar-card {
  border: 1px solid rgba(11,34,57,.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(11,34,57,.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.feature-card:hover,
.policy-card:hover,
.product-card:hover,
.contact-card:hover,
.spec-card:hover {
  transform: translateY(-8px);
  border-color: rgba(223,198,124,.65);
  box-shadow: 0 26px 70px rgba(11,34,57,.14);
}

.feature-card,
.policy-card,
.spec-card {
  padding: 32px;
}

.icon-badge {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  font-size: 24px;
  margin-bottom: 24px;
}

.split-image {
  position: relative;
  min-height: 520px;
}

.split-image img {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(11,34,57,.18);
}

.split-image .image-one {
  width: 74%;
  height: 78%;
  right: 0;
  top: 0;
}

.split-image .image-two {
  width: 56%;
  height: 48%;
  left: 0;
  bottom: 0;
  border: 10px solid #fff;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.metric-item {
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}

.metric-item strong {
  display: block;
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}

.soft-band {
  background: linear-gradient(180deg, #f5f7fb 0%, #fff 100%);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(11,34,57,.08);
}

.timeline-index {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

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

.sidebar-card {
  position: sticky;
  top: 120px;
  padding: 24px;
}

.sidebar-card h4 {
  color: var(--ink);
  margin-bottom: 18px;
}

.product-nav {
  display: grid;
  gap: 8px;
}

.product-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--soft);
  font-weight: 800;
}

.product-nav a.active,
.product-nav a:hover {
  background: var(--ink);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  overflow: hidden;
  min-width: 0;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card .content {
  padding: 24px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.spec-card strong {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  margin-bottom: 12px;
}

.spec-card .spec-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #f4e6aa);
  box-shadow: 0 12px 30px rgba(223,198,124,.35);
}

.spec-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.type-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 22px 60px rgba(11,34,57,.16);
  isolation: isolate;
}

.type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,34,57,.05), rgba(11,34,57,.94));
  z-index: 1;
}

.type-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
}

.type-card:hover img {
  transform: scale(1.1);
}

.type-card .content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
}

.type-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.type-card p {
  color: rgba(255,255,255,.78);
  margin-bottom: 0;
}

.type-card .type-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(11,34,57,.08);
}

.dimension-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(11,34,57,.12);
}

.dimension-table {
  min-width: 920px;
  animation: tableRise .75s ease both;
}

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

.data-table th {
  color: #fff;
  background: var(--ink);
}

.data-table tr:nth-child(even) td {
  background: #f8fafc;
}

.dimension-table tbody tr {
  transition: transform .3s ease, box-shadow .3s ease;
}

.dimension-table tbody tr:hover {
  position: relative;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(11,34,57,.1);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.application-item {
  position: relative;
  min-height: 190px;
  padding: 28px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  border: 1px solid rgba(11,34,57,.08);
  box-shadow: 0 18px 48px rgba(11,34,57,.08);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
  isolation: isolate;
}

.application-item::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -58px;
  top: -58px;
  border-radius: 50%;
  background: rgba(223,198,124,.28);
  z-index: -1;
  transition: transform .35s ease;
}

.application-item:hover {
  transform: translateY(-8px);
  border-color: rgba(223,198,124,.7);
  background: linear-gradient(145deg, #fff, #f8fafc);
}

.application-item:hover::before {
  transform: scale(1.5);
}

.application-item i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #194461;
  border-radius: 8px;
  font-size: 24px;
  margin-bottom: 22px;
  box-shadow: 0 14px 34px rgba(235,68,56,.28);
}

.application-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  margin-top: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card {
  padding: 30px;
}

.map-frame {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  filter: saturate(.95) contrast(1.02);
  box-shadow: 0 22px 64px rgba(11,34,57,.14);
}

.simple-info {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--soft);
}

.wow-lite {
  animation: fadeUp .8s ease both;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes tableRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1199px) {
  .product-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
  }
  .sidebar-card {
    top: 120px;
  }
}

@media (max-width: 991px) {
  .section-pad {
    padding: 78px 0;
  }
  .product-layout {
    grid-template-columns: 1fr;
  }
  .sidebar-card {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .metric-strip,
  .product-grid,
  .type-grid,
  .spec-grid,
  .application-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-image {
    min-height: 440px;
    margin-top: 35px;
  }
}

@media (max-width: 575px) {
  .page-hero {
    min-height: 360px;
  }
  .page-hero .container {
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .page-hero p,
  .lead-text {
    font-size: 16px;
  }
  .section-pad {
    padding: 58px 0;
  }
  .section-pad-sm {
    padding: 52px 0;
  }
  .product-layout {
    gap: 24px;
  }
  .sidebar-card {
    padding: 18px;
  }
  .product-nav a {
    gap: 12px;
    padding: 12px;
    font-size: 14px;
    line-height: 1.35;
  }
  .product-card .content,
  .type-card .content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .type-card {
    min-height: 320px;
  }
  .metric-strip,
  .product-grid,
  .type-grid,
  .spec-grid,
  .application-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .feature-card,
  .policy-card,
  .spec-card,
  .contact-card {
    padding: 24px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
  }
  .data-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
