/* ==========================================================================
   LoRaWAN Solutions Landing Page
   Font: Poppins | Accent: Blue (#0A66C2 family)
   ========================================================================== */

:root {
  --lsh-primary: #0a4595;
  --lsh-primary-dark: #082f66;
  --lsh-accent: #0a66c2;
  --lsh-accent-light: #2bb3f0;
  --lsh-text-muted: #55637d;
  --lsh-radius: 16px;
}

.lsh-page {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background: #ffffff;
}

.lsh-page .container {
  width: 90%;
  /* max-width: 1280px; */
}

/* Reserved space for the site's global fixed header/nav */
.lsh-header-spacer {
  display: block;
  height: 72px;
  background: #ffffff;
}

/* ---- Hero section ---- */

.lsh-hero {
  position: relative;
  padding: 60px 0 0;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 30px;
}

/* Background photo: product devices over a city skyline, supplied by the client */
.lsh-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("https://s3-tiaimgv1.s3.ap-south-1.amazonaws.com/uniconverge/lorawan-solutions/solution-bg.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* Soft white-to-transparent wash so hero copy stays legible over the photo */
.lsh-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.85) 32%,
    rgba(255, 255, 255, 0.35) 55%,
    rgba(255, 255, 255, 0.05) 75%
  );
}

.lsh-hero-inner {
  padding-bottom: 60px;
}

.lsh-hero-content {
  padding-top: 10px;
}

.lsh-hero-title {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  line-height: 1.2;
  color: var(--lsh-primary);
  letter-spacing: -0.01em;
}

.lsh-hero-title sup {
  font-size: 0.5em;
  top: -0.9em;
}

.lsh-hero-tagline {
  margin: 0 0 16px;
  font-size: 19px;
  font-weight: 600;
  color: var(--lsh-accent);
}

.lsh-hero-tagline span {
  color: #b7c4de;
  margin: 0 4px;
}

.lsh-hero-desc {
  margin: 0 0 34px;
  max-width: 480px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--lsh-text-muted);
}

/* ---- Key stats row ---- */

.lsh-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 32px;
  margin: 0 0 40px;
  padding: 0;
}

.lsh-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.lsh-stat i {
  font-size: 24px;
  color: var(--lsh-accent);
  flex: none;
}

.lsh-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--lsh-primary);
  line-height: 1.1;
}

.lsh-stat span {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--lsh-text-muted);
}

/* ---- LoRaWAN wordmark ---- */

.lsh-hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lsh-hero-logo i {
  font-size: 22px;
  color: var(--lsh-accent-light);
  transform: rotate(-45deg);
}

.lsh-hero-logo-text {
  font-size: 26px;
  font-weight: 700;
  color: var(--lsh-primary-dark);
}

.lsh-accent {
  color: var(--lsh-primary-dark);
}

.lsh-accent-bold {
  color: var(--lsh-accent-light);
  font-weight: 800;
}

.lsh-hero-logo-text sup {
  font-size: 0.45em;
}

/* ---- Floating feature strip ---- */

.lsh-feature-strip-wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.lsh-feature-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 -46px;
  padding: 26px 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(10, 40, 100, 0.14);
  transform: translateY(-46px);
}

.lsh-feature-item {
  display: flex;
  /* align-items: center; */
  gap: 8px;
  padding: 0 20px;
  flex: 1;
  border-right: 1px solid #e7ecf5;
}

.lsh-feature-item:last-child {
  border-right: none;
}

.lsh-feature-item i {
  font-size: 30px;
  color: var(--lsh-accent);
  flex: none;
}

.lsh-feature-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--lsh-primary);
  margin-bottom: 2px;
}

.lsh-feature-item span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  /* color: var(--lsh-text-muted); */
  color: var(--lsh-primary);
}

/* ---- Responsive ---- */

@media (max-width: 1199.98px) {
  .lsh-hero-bg {
    background-position: 70% center;
  }
}

@media (max-width: 991.98px) {
  .lsh-hero {
    padding-top: 50px;
  }

  .lsh-hero-bg {
    background-position: 80% center;
  }

  .lsh-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.92) 45%,
      rgba(255, 255, 255, 0.55) 75%,
      rgba(255, 255, 255, 0.25) 100%
    );
  }

  .lsh-feature-strip {
    flex-wrap: wrap;
    row-gap: 20px;
    transform: none;
    margin: 30px 0 0;
  }

  .lsh-feature-item {
    flex: 1 1 45%;
    border-right: none;
    padding: 0 10px;
  }

  .lsh-feature-strip-wrap {
    padding-bottom: 50px;
  }
}

@media (max-width: 767.98px) {
  .lsh-hero-inner {
    padding-bottom: 30px;
  }

  .lsh-hero-bg {
    background-position: 85% center;
  }

  .lsh-hero-overlay {
    background: rgba(255, 255, 255, 0.94);
  }

  .lsh-hero-desc {
    max-width: 100%;
  }

  .lsh-stats-row {
    gap: 20px 24px;
  }
}

@media (max-width: 575.98px) {
  .lsh-hero-title {
    font-size: 1.75rem;
  }

  .lsh-hero-tagline {
    font-size: 16px;
  }

  .lsh-stat {
    width: 45%;
  }

  .lsh-feature-strip {
    padding: 20px;
  }

  .lsh-feature-item {
    flex: 1 1 100%;
  }

  .lsh-hero-logo-text {
    font-size: 22px;
  }
}

/* ==========================================================================
   What is LoRaWAN? section
   ========================================================================== */

.lsh-about {
  padding: 0px 0 60px;
  background: #ffffff;
  border-top: 1px solid #e7ecf5;
}

.lsh-about-inner {
  padding-top: 40px;
}

.lsh-about-title {
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--lsh-primary);
}

.lsh-about-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--lsh-text-muted);
}

.lsh-about-text strong {
  font-weight: 700;
  color: var(--lsh-primary-dark);
}

@media (max-width: 575.98px) {
  .lsh-about {
    padding: 40px 0 40px;
  }

  .lsh-about-inner {
    padding-top: 28px;
  }
}

/* ==========================================================================
   Why Choose LoRaWAN Over Other Technologies section
   ========================================================================== */

.lsh-why-choose {
  padding: 60px 0 70px;
  background: #eef2fc;
}

.lsh-why-choose-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 6px 20px rgba(10, 40, 100, 0.06);
  border: 1px solid #00000040;
}

.lsh-why-choose-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 575.98px) {
  .lsh-why-choose {
    padding: 28px 0 50px;
  }

  .lsh-why-choose-card {
    padding: 10px;
    border-radius: 16px;
  }
}

/* ==========================================================================
   How Does LoRaWAN Work section
   ========================================================================== */

.lsh-architecture {
  padding: 60px;
  background: #ffffff;
}

.lsh-architecture-card {
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 6px 20px rgba(10, 40, 100, 0.06);
  border: 1px solid #00000040;
}

.lsh-architecture-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 575.98px) {
  .lsh-architecture {
    padding: 0 0 50px;
  }

  .lsh-architecture-card {
    padding: 10px;
    border-radius: 16px;
  }
}

/* ==========================================================================
   Major Benefits section
   ========================================================================== */

.lsh-benefits {
  padding: 60px 0 80px;
  background: #eef2fc;
}

.lsh-benefits-head {
  text-align: center;
  margin-bottom: 40px;
}

.lsh-benefits-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: var(--lsh-primary);
}

.lsh-benefits-head p {
  margin: 0;
  font-size: 15px;
  color: var(--lsh-text-muted);
}

.lsh-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lsh-benefit-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 22px 24px;
  box-shadow: 0 6px 18px rgba(10, 40, 100, 0.06);
  overflow: hidden;
}

.lsh-benefit-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 18px;
}

.lsh-benefit-card h3 {
  position: relative;
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
}

.lsh-benefit-card ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lsh-benefit-card li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--lsh-text-muted);
}

.lsh-benefit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b6c0d6;
}
.lsh-benefit-blue .lsh-benefit-icon {
  color: var(--lsh-accent);
}

.lsh-benefit-blue h3 {
  color: var(--lsh-primary);
}

.lsh-benefit-green .lsh-benefit-icon {
  color: #1a9a56;
}

.lsh-benefit-green h3 {
  color: #157a44;
}

.lsh-benefit-red .lsh-benefit-icon {
  color: #d63f4f;
}

.lsh-benefit-red h3 {
  color: #c02f3f;
}

@media (max-width: 991.98px) {
  .lsh-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .lsh-benefits {
    padding: 50px 0 60px;
  }

  .lsh-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Engineered for Operational Reliability section
   ========================================================================== */

.lsh-reliability {
  padding: 50px 0;
  background: #ffffff;
}

.lsh-reliability-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 56px;
}

.lsh-reliability-content h2 {
  margin: 0 0 30px;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--lsh-primary);
  max-width: 380px;
}

.lsh-reliability-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}

.lsh-reliability-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 15.5px;
  font-weight: 700;
  color: #1a9a56;
}

.lsh-reliability-item h3 i {
  font-size: 15px;
}

.lsh-reliability-item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--lsh-text-muted);
}

.lsh-reliability-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(10, 40, 100, 0.14);
}

@media (max-width: 991.98px) {
  .lsh-reliability-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lsh-reliability-media {
    order: -1;
  }

  .lsh-reliability-content h2 {
    max-width: 100%;
  }

  .lsh-reliability-media img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 575.98px) {
  .lsh-reliability {
    padding: 56px 0;
  }

  .lsh-reliability-features {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ==========================================================================
   LoRaWAN Product Catalog section
   ========================================================================== */

.lsh-products {
  position: relative;
  padding: 50px 0;
  background: #e5eeff;
  overflow: hidden;
  isolation: isolate;
}

/* Decorative dot-grid corner accents */
.lsh-products-dots {
  position: absolute;
  z-index: -1;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(#c3cfec 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(circle, #000 55%, transparent 78%);
  mask-image: radial-gradient(circle, #000 55%, transparent 78%);
  opacity: 0.7;
}
.lsh-product-body2 {
  display: flex;
  gap: 10px;
}
.lsh-products-dots-left {
  top: -60px;
  left: -60px;
}

.lsh-products-dots-right {
  top: -60px;
  right: -60px;
}

.lsh-products-head {
  text-align: center;
  margin-bottom: 40px;
}

.lsh-products-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: var(--lsh-primary);
}

.lsh-products-head p {
  margin: 0;
  font-size: 15px;
  color: var(--lsh-text-muted);
}

.lsh-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lsh-product-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 20px rgba(10, 40, 100, 0.06);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.lsh-product-card:hover {
  box-shadow: 0 14px 30px rgba(10, 40, 100, 0.12);
  transform: translateY(-3px);
}

.lsh-product-body {
  flex: 1;
  min-width: 0;
}

.lsh-product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--lsh-accent);
  color: #ffffff;
  font-size: 17px;
  margin-bottom: 8px;
}

.lsh-product-body h3 {
  margin: 0 0 5px;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--lsh-primary-dark);
}

.lsh-product-divider {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: var(--lsh-accent);
  margin-bottom: 6px;
}

.lsh-product-body > p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--lsh-text-muted);
}

.lsh-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lsh-product-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.lsh-product-btn-primary {
  background: var(--lsh-accent);
  color: #ffffff;
}

.lsh-product-btn-primary:hover {
  background: var(--lsh-primary);
}

.lsh-product-btn-outline {
  background: #ffffff;
  color: var(--lsh-accent);
  border-color: #c9d7f0;
}

.lsh-product-btn-outline:hover {
  background: #f0f4fd;
  border-color: var(--lsh-accent);
}

.lsh-product-media {
  flex: none;
  width: 38%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lsh-product-media img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .lsh-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .lsh-product-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .lsh-product-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .lsh-product-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .lsh-product-actions {
    justify-content: center;
  }

  .lsh-product-media {
    width: 100%;
    order: -1;
    margin-bottom: 10px;
  }
}

@media (max-width: 575.98px) {
  .lsh-products {
    padding: 56px 0;
  }

  .lsh-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contact / Get In Touch section
   ========================================================================== */

.lsh-contact {
  padding: 50px 0;
  background: #eef2fc;
}

.lsh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.lsh-contact-content h2 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--lsh-primary);
}
#mainFormError {
  font-size: 12px;
}
#ctaFormError {
  font-size: 12px;
}

.lsh-contact-content p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--lsh-text-muted);
}

.cntnerror-msg {
  font-size: 10px;
}

.lsh-contact-card {
  max-width: 460px;
  margin-left: auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 16px 40px rgba(10, 40, 100, 0.1);
}

.lsh-contact-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  color: var(--lsh-primary);
}

.lsh-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lsh-contact-field {
  margin-bottom: 12px;
}

.lsh-contact-field label {
  display: block;
  margin-bottom: 5px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a869e;
}

.lsh-contact-field input,
.lsh-contact-field textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #dde3f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--lsh-primary-dark);
  background: #ffffff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lsh-contact-field textarea {
  resize: vertical;
  min-height: 56px;
}

.lsh-contact-field input::placeholder,
.lsh-contact-field textarea::placeholder {
  color: #a7b0c2;
}

.lsh-contact-field input:focus,
.lsh-contact-field textarea:focus {
  outline: none;
  border-color: var(--lsh-accent);
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.14);
}

.lsh-contact-submit {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: var(--lsh-primary);
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.lsh-contact-submit:hover {
  background: var(--lsh-primary-dark);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .lsh-contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lsh-contact-content p {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .lsh-contact {
    padding: 56px 0;
  }

  .lsh-contact-card {
    padding: 26px 20px;
    width: 100%;
  }

  .lsh-contact-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   Network Server Integrations section (infinite logo marquee)
   ========================================================================== */

.lsh-partners {
  padding: 36px 0 44px;
  background: #ffffff;
  border-top: 1px solid #e7ecf5;
}

.lsh-partners-caption {
  margin: 0 0 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a869e;
}

.lsh-partners-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.lsh-partners-track {
  display: flex;
  width: max-content;
  animation: lsh-marquee 26s linear infinite;
}

/* Pause the scroll on hover so logos can be inspected */
.lsh-partners-track-wrap:hover .lsh-partners-track {
  animation-play-state: paused;
}

.lsh-partners-set {
  display: flex;
  align-items: center;
  flex: none;
  gap: 56px;
  padding-right: 56px;
}

.lsh-partners-set img {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.lsh-partners-set img:hover {
  opacity: 1;
  transform: scale(1.06);
}

/* Track width = 2 identical sets side by side; -50% slides exactly one set out of view */
@keyframes lsh-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767.98px) {
  .lsh-partners {
    padding: 32px 0 40px;
  }

  .lsh-partners-set {
    gap: 40px;
    padding-right: 40px;
  }

  .lsh-partners-set img {
    height: 34px;
  }

  .lsh-partners-track {
    animation-duration: 18s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lsh-partners-track {
    animation: none;
  }

  .lsh-partners-track-wrap {
    overflow-x: auto;
  }
}

/* ==========================================================================
   Custom Solutions section
   ========================================================================== */

.lsh-custom {
  padding: 60px 0;
  background: #dbe6fb;
}

.lsh-custom-head {
  text-align: center;
  margin-bottom: 36px;
}

.lsh-custom-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: var(--lsh-primary);
}

.lsh-custom-head p {
  margin: 0;
  font-size: 15px;
  color: var(--lsh-text-muted);
}

.lsh-custom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lsh-custom-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 6px 18px rgba(10, 40, 100, 0.05);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.lsh-custom-card:hover {
  box-shadow: 0 12px 26px rgba(10, 40, 100, 0.1);
  transform: translateY(-3px);
}

.lsh-custom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e3eafc;
  color: var(--lsh-accent);
  font-size: 17px;
  /* margin-bottom: 16px; */
}
.inlInearw {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.lsh-custom-card h3 {
  margin: 0 0 0px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--lsh-primary-dark);
}

.lsh-custom-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--lsh-text-muted);
}

@media (max-width: 991.98px) {
  .lsh-custom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .lsh-custom {
    padding: 50px 0;
  }

  .lsh-custom-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   UCT LoRaWAN IoT Platform section
   ========================================================================== */

.lsh-platform {
  padding: 50px 0;
  background: #ffffff;
}

.lsh-platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.lsh-platform-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.lsh-platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lsh-primary-dark);
  color: #ffffff;
  font-size: 22px;
}

.lsh-platform-heading h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-weight: 800;
  color: var(--lsh-primary);
}

.lsh-platform-subhead {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--lsh-primary-dark);
}

.lsh-platform-desc {
  margin: 0 0 24px;
  max-width: 460px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--lsh-text-muted);
}

.lsh-platform-link {
  color: var(--lsh-accent);
  font-weight: 600;
  text-decoration: none;
}

.lsh-platform-link:hover {
  text-decoration: underline;
}

.lsh-platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  max-width: 460px;
}

.lsh-platform-tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--lsh-primary-dark);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  max-width: 220px;
}

.lsh-platform-tags i {
  flex: none;
  font-size: 13px;
}

.lsh-platform-media {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #dbe6fb; */
  /* border-radius: 20px; */
  /* padding: 32px; */
}

.lsh-platform-media img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(10, 40, 100, 0.18));
  border-radius: 20px;
}

@media (max-width: 991.98px) {
  .lsh-platform-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lsh-platform-media {
    order: -1;
  }

  .lsh-platform-desc,
  .lsh-platform-tags {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .lsh-platform {
    padding: 56px 0;
  }

  .lsh-platform-heading {
    gap: 12px;
  }

  .lsh-platform-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .lsh-platform-media {
    padding: 20px;
    border-radius: 16px;
  }

  .lsh-platform-tags li {
    max-width: 100%;
  }
}

/* ==========================================================================
   Industries / Use Cases section
   ========================================================================== */

.lsh-industries {
  padding: 50px 0;
  background: #ffffff;
}

.lsh-industries-head {
  text-align: center;
  margin-bottom: 40px;
}

.lsh-industries-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: var(--lsh-primary);
}

.lsh-industries-head p {
  margin: 0;
  font-size: 15px;
  color: var(--lsh-text-muted);
}

.lsh-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lsh-industry-card {
  overflow: hidden;
  border-radius: 14px;
  background: #eef2fc;
  box-shadow: 0 6px 18px rgba(10, 40, 100, 0.06);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.lsh-industry-card:hover {
  box-shadow: 0 14px 28px rgba(10, 40, 100, 0.12);
  transform: translateY(-3px);
}

.lsh-industry-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lsh-industry-body {
  padding: 18px 18px 20px;
}

.lsh-industry-body h3 {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--lsh-primary);
}

.lsh-industry-body p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--lsh-text-muted);
}

@media (max-width: 991.98px) {
  .lsh-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .lsh-industries {
    padding: 56px 0;
  }

  .lsh-industries-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   How LoRaWAN is Transforming Industry section
   ========================================================================== */

.lsh-transform {
  padding: 60px 0;
  background: #0a2559;
}

.lsh-transform-head {
  text-align: center;
  margin-bottom: 40px;
}

.lsh-transform-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: #ffffff;
}

.lsh-transform-head p {
  margin: 0;
  font-size: 15px;
  color: #a9b6d6;
}

.lsh-transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lsh-transform-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
}

.lsh-transform-num {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--lsh-accent-light);
}

.lsh-transform-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
}

.lsh-transform-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #b3bfdb;
}

@media (max-width: 991.98px) {
  .lsh-transform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .lsh-transform {
    padding: 56px 0;
  }

  .lsh-transform-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Video Showcase section
   ========================================================================== */

.lsh-videos {
  padding: 60px 0;
  background: #ffffff;
}

.lsh-videos-head {
  text-align: center;
  margin-bottom: 36px;
}

.lsh-videos-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 800;
  color: var(--lsh-primary);
}

.lsh-videos-head p {
  margin: 0;
  font-size: 15px;
  color: var(--lsh-text-muted);
}

.lsh-videos-card {
  background: #ffffff;
  border: 1px solid #e7ecf5;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(10, 40, 100, 0.06);
}

.lsh-videos-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.lsh-videos-intro p {
  margin: 0;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--lsh-text-muted);
}

.lsh-videos-tag {
  flex: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  color: var(--lsh-primary);
  white-space: nowrap;
}

.lsh-videos-tag i {
  font-size: 13px;
  color: var(--lsh-accent);
}

.lsh-videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lsh-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #0a2559;
}

.lsh-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767.98px) {
  .lsh-videos-intro {
    flex-direction: column;
    gap: 12px;
  }

  .lsh-videos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .lsh-videos {
    padding: 56px 0;
  }

  .lsh-videos-card {
    padding: 18px;
    border-radius: 16px;
  }
}

/* ==========================================================================
   Successful Deployments section
   ========================================================================== */

.lsh-deployments {
  padding: 60px 0;
  background: #eef2fc;
}

.lsh-deployments-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.lsh-deployments-head h2 {
  margin: 0 0 6px;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: var(--lsh-primary);
}

.lsh-deployments-head p {
  margin: 0;
  font-size: 14px;
  color: var(--lsh-text-muted);
}

.lsh-deployments-viewall {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lsh-accent);
  text-decoration: none;
}

.lsh-deployments-viewall i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.lsh-deployments-viewall:hover i {
  transform: translateX(3px);
}

.lsh-deployments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lsh-deployment-card {
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(10, 40, 100, 0.06);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.lsh-deployment-card:hover {
  box-shadow: 0 14px 30px rgba(10, 40, 100, 0.12);
  transform: translateY(-3px);
}

.lsh-deployment-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lsh-deployment-body {
  padding: 20px 22px 22px;
}

.lsh-deployment-tag {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a9a56;
}

.lsh-deployment-body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--lsh-primary);
}

.lsh-deployment-body > p {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--lsh-text-muted);
}

.lsh-deployment-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lsh-accent);
  text-decoration: none;
}

.lsh-deployment-link i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.lsh-deployment-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .lsh-deployments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .lsh-deployments-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  .lsh-deployments {
    padding: 56px 0;
  }

  .lsh-deployments-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Looking For an IoT Solution? section
   ========================================================================== */

.lsh-solution-cta {
  padding: 60px 0;
  background: #dbe6fb;
}

.lsh-solution-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.lsh-solution-cta-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: var(--lsh-primary);
}

.lsh-solution-cta-content > p {
  margin: 0 0 28px;
  max-width: 420px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--lsh-text-muted);
}

.lsh-solution-cta-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.lsh-solution-cta-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--lsh-primary-dark);
}

.lsh-solution-cta-info i {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--lsh-accent);
  font-size: 14px;
}

.lsh-solution-cta-info a {
  color: var(--lsh-primary-dark);
  text-decoration: none;
  font-weight: 600;
}

.lsh-solution-cta-info a:hover {
  color: var(--lsh-accent);
}

.lsh-solution-cta-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(10, 40, 100, 0.1);
}

.lsh-solution-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lsh-solution-cta-field {
  margin-bottom: 14px;
}

.lsh-solution-cta-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a869e;
}

.lsh-solution-cta-field input,
.lsh-solution-cta-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dde3f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--lsh-primary-dark);
  background: #ffffff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lsh-solution-cta-field textarea {
  resize: vertical;
  min-height: 64px;
}

.lsh-solution-cta-field input::placeholder,
.lsh-solution-cta-field textarea::placeholder {
  color: #a7b0c2;
}

.lsh-solution-cta-field input:focus,
.lsh-solution-cta-field textarea:focus {
  outline: none;
  border-color: var(--lsh-accent);
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.14);
}

.lsh-solution-cta-submit {
  width: 100%;
  margin-bottom: 12px;
  padding: 13px;
  border: none;
  border-radius: 8px;
  background: var(--lsh-primary);
  color: #ffffff;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.lsh-solution-cta-submit:hover {
  background: var(--lsh-primary-dark);
  transform: translateY(-2px);
}

.lsh-solution-cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border: 1.5px solid #16a34a;
  border-radius: 8px;
  background: #ffffff;
  color: #16a34a;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.lsh-solution-cta-whatsapp i {
  font-size: 17px;
}

.lsh-solution-cta-whatsapp:hover {
  background: #eafaf0;
}

@media (max-width: 991.98px) {
  .lsh-solution-cta-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lsh-solution-cta-content > p {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .lsh-solution-cta {
    padding: 56px 0;
  }

  .lsh-solution-cta-card {
    padding: 22px;
  }

  .lsh-solution-cta-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
