:root {
  --blue: #1799ff;
  --magenta: #d80078;
  --white: #ffffff;
  --page-bg: #05090d;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--white);
  font-family: "Poppins", sans-serif;
}

a {
  color: inherit;
  text-decoration: none !important;
}

button {
  font: inherit;
}

body,
input,
button,
textarea,
select {
  font-family: "Poppins", sans-serif;
}

.home-page {
  margin-top: 70px;
  min-height: 100vh;
  background: var(--page-bg);
}

.hero-slider {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #03080c;
  contain: layout style paint;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  display: flex;
  align-items: center;
  padding: clamp(76px, 8vw, 110px) clamp(22px, 6vw, 86px)
    clamp(130px, 13vw, 180px) clamp(58px, 7.5vw, 142px);
  opacity: 0;
  visibility: hidden;
  background: transparent;
  transition:
    opacity 0.75s ease,
    visibility 0.75s ease;
  will-change: opacity, visibility;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.34) 54%,
      rgba(0, 0, 0, 0.12) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.34) 0%,
      rgba(0, 0, 0, 0.08) 48%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    var(--banner-image);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  transform: scale(1.04);
  transition: transform 5.5s ease;
  contain: layout style paint;
}

.slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}

.slide.is-active::before {
  transform: scale(1);
}

.product-slide {
  background: transparent;
}

.product-slide::before {
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.04) 58%,
      rgba(0, 0, 0, 0) 100%
    ),
    var(--banner-image);
}

.slide-copy {
  position: relative;
  z-index: 4;
  width: min(1120px, 100%);
}

.slide-copy h1 {
  max-width: 1240px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(4rem, 6.8vw, 8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  contain: layout style;
  font-display: swap;
}

.slide-copy > p {
  max-width: 1080px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.25rem, 1.55vw, 1.75rem);
  font-weight: 400;
  line-height: 1.45;
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 58px;
}

.primary-action,
.secondary-action,
.slider-arrow,
.thumb {
  border: 0;
  cursor: pointer;
}

.primary-action {
  display: inline-flex;
  min-width: 275px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.86);
  color: #02060a;
  font-size: clamp(1.02rem, 1.22vw, 1.5rem);
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.secondary-action {
  display: inline-flex;
  min-width: 300px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 8px;
  background: rgba(96, 96, 103, 0.86);
  color: #ffffff;
  font-size: clamp(1.02rem, 1.22vw, 1.5rem);
  font-weight: 700;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 9;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.8rem;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.92);
  color: #071017;
}

.slider-prev {
  left: 8px;
}

.slider-next {
  right: 8px;
}

.thumb-strip {
  position: absolute;
  right: clamp(18px, 4.6vw, 90px);
  bottom: clamp(44px, 8vw, 92px);
  z-index: 8;
  display: flex;
  width: min(680px, calc(100vw - 36px));
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 8px;
}

.thumb-strip .slider-arrow {
  position: static;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  font-size: 1rem;
  transform: none;
}

.thumb {
  display: none;
  width: clamp(74px, 8vw, 104px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0.62;
  transition:
    border-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.thumb.is-visible {
  display: block;
}

.thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.is-active,
.thumb:hover {
  border-color: rgba(255, 255, 255, 0.94);
  opacity: 1;
  transform: translateY(-2px);
}

.mission-showcase {
  overflow: hidden;
  background: #ffffff;
  color: #02060a;
  padding: clamp(64px, 7vw, 98px) clamp(20px, 6vw, 92px);
}

.mission-content {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(40px, 6vw, 88px);
  width: min(1628px, 100%);
  margin: 0 auto;
  align-items: center;
}

.mission-copy {
  max-width: 780px;
}

.mission-copy p {
  margin: 0;
  font-size: clamp(1.25rem, 1.55vw, 1.78rem);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
}

.mission-copy .mission-tags {
  margin-top: 30px;
}

.read-more-link {
  display: inline-flex;
  min-width: 240px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  border: 1px solid #02060a;
  border-radius: 5px;
  color: #02060a;
  font-size: clamp(1.15rem, 1.35vw, 1.65rem);
  font-weight: 500;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.read-more-link:hover {
  background: #02060a;
  color: #ffffff;
}

.college-marquee {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.college-marquee::before,
.college-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 54px;
  pointer-events: none;
}

.college-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.college-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.college-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: collegeScroll 24s linear infinite;
  will-change: transform;
}

.college-track img {
  display: block;
  width: clamp(240px, 22vw, 390px);
  height: clamp(310px, 27vw, 500px);
  flex: 0 0 auto;
  border-radius: 0;
  object-fit: cover;
}

.college-marquee:hover .college-track {
  animation-play-state: paused;
}

@keyframes collegeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (max-width: 900px) {
  .slide {
    align-items: flex-start;
    padding: 76px 22px 160px;
    padding-top: 78px;
  }

  .slide::before {
    background-image:
      linear-gradient(
        90deg,
        rgba(2, 7, 11, 0.95) 0%,
        rgba(2, 7, 11, 0.68) 58%,
        rgba(2, 7, 11, 0.72) 100%
      ),
      linear-gradient(
        0deg,
        rgba(2, 7, 11, 0.92) 0%,
        rgba(2, 7, 11, 0.18) 56%,
        rgba(2, 7, 11, 0.5) 100%
      ),
      var(--banner-image);
  }

  .slide-copy {
    width: 100%;
  }

  .slide-copy h1 {
    font-size: clamp(3rem, 12vw, 5.8rem);
    line-height: 1.08;
  }

  .slide-copy > p {
    max-width: 720px;
    font-size: clamp(1rem, 3vw, 1.35rem);
  }

  .slide-actions {
    gap: 12px;
  }

  .primary-action {
    min-width: 0;
    min-height: 56px;
    padding: 15px 20px;
  }

  .secondary-action {
    min-width: 0;
    min-height: 56px;
    padding: 15px 20px;
  }

  .thumb-strip {
    left: 14px;
    right: 14px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .thumb-strip::-webkit-scrollbar {
    display: none;
  }

  .mission-content {
    grid-template-columns: 1fr;
  }

  .mission-copy {
    max-width: none;
  }

  .college-track img {
    width: clamp(220px, 42vw, 340px);
    height: clamp(280px, 52vw, 430px);
  }
}

@media (max-width: 560px) {
  .hero-slider {
    min-height: 100svh;
  }

  .slide {
    padding-right: 18px;
    padding-left: 18px;
  }

  .slide-copy > p {
    margin-top: 18px;
  }

  .slide-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 26px;
  }

  .primary-action,
  .secondary-action {
    flex: 1 1 auto;
  }

  .mission-showcase {
    padding: 48px 18px;
  }

  .mission-copy p {
    font-size: 1.12rem;
  }

  .mission-copy .mission-tags {
    margin-top: 22px;
  }

  .read-more-link {
    width: 100%;
    min-width: 0;
    margin-top: 28px;
  }

  .college-marquee::before,
  .college-marquee::after {
    width: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .college-track {
    animation: none;
    overflow-x: auto;
  }
}

.iot-solutions-section {
  background: #ffffff;
  color: #0a0f18;
  padding: clamp(54px, 5.5vw, 86px) clamp(20px, 6vw, 92px);
}

.iot-solutions-header {
  width: min(1660px, 100%);
  margin: 0 auto clamp(34px, 4vw, 54px);
  text-align: center;
}

.iot-solutions-header h2 {
  margin: 0;
  color: #303030;
  font-size: clamp(2.7rem, 4.4vw, 5.05rem);
  font-weight: 800;
  line-height: 1.02;
  text-shadow: 0 7px 13px rgba(0, 0, 0, 0.24);
}

.iot-solutions-header h2 em {
  color: inherit;
  font-style: normal;
}

.iot-solutions-header p {
  max-width: 1540px;
  margin: 24px auto 0;
  color: #06101d;
  font-size: clamp(1.05rem, 1.3vw, 1.42rem);
  font-style: normal;
  line-height: 1.35;
}

.iot-solutions-header p em {
  color: inherit;
  font-style: normal;
  font-weight: 600;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 138px;
  gap: 24px;
  width: min(1660px, 100%);
  margin: 0 auto;
}

.solution-card {
  position: relative;
  display: flex;
  grid-column: span 3;
  grid-row: span 3;
  min-height: 0;
  overflow: hidden;
  align-items: flex-start;
  padding: 20px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  isolation: isolate;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46)),
    var(--solution-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.08),
    transparent 36%
  );
}

.solution-card:hover {
  border-color: rgba(39, 38, 165, 0.34);
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.solution-card-tall {
  grid-column: span 3;
  grid-row: span 3;
}

.solution-card-wide {
  grid-column: span 6;
  grid-row: span 3;
}

.solution-panel {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 132px;
  align-content: start;
  gap: 10px;
  padding: 20px 62px 20px 20px;
  border: 0;
  border-radius: 9px;
  background: rgba(64, 64, 64, 0.86);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.solution-panel-bottom {
  align-self: flex-end;
  margin-top: auto;
}

.solution-panel-blue,
.solution-panel-warm {
  background: rgba(6, 24, 79, 0.88);
}

.solution-title {
  display: block;
  color: #ffffff;
  font-size: clamp(1.18rem, 1.35vw, 1.5rem);
  font-weight: 700;
  line-height: 1.18;
}

.solution-text {
  display: block;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.98rem, 1.08vw, 1.16rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.42;
}

.solution-icon {
  position: absolute;
  top: 26px;
  right: 20px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.9rem;
  background: transparent;
}

.trend-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border: 0;
  border-radius: 5px;
  background: rgba(120, 113, 100, 0.68);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

@media (max-width: 1180px) {
  .iot-solutions-header {
    grid-template-columns: 1fr;
  }

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

  .solution-card,
  .solution-card-tall,
  .solution-card-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 430px;
  }
}

@media (max-width: 700px) {
  .iot-solutions-section {
    padding: 54px 18px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solution-card,
  .solution-card-tall,
  .solution-card-wide {
    min-height: 390px;
    border-radius: 8px;
  }

  .solution-panel {
    min-height: 170px;
    padding: 20px 58px 22px 20px;
  }
}

.trusted-enterprises {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: #0b1f31;
  padding: clamp(64px, 7vw, 106px) clamp(20px, 6vw, 92px);
}

.trusted-header {
  width: min(1540px, 100%);
  margin: 0 auto clamp(34px, 4.5vw, 62px);
  text-align: center;
}

.trusted-header h2 {
  margin: 0;
  color: #12283b;
  font-size: clamp(2.5rem, 4.6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
}

.trusted-header p {
  max-width: 1420px;
  margin: 22px auto 0;
  color: #41576a;
  font-size: clamp(1rem, 1.28vw, 1.34rem);
  font-weight: 400;
  line-height: 1.55;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  width: min(1640px, 100%);
  margin: 0 auto;
}

.logo-card {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  border: 1px solid rgba(18, 40, 59, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f3f7fa);
  box-shadow: 0 12px 34px rgba(17, 45, 68, 0.08);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.logo-card:hover {
  border-color: rgba(15, 125, 149, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(17, 45, 68, 0.13);
}

.logo-card img {
  display: block;
  max-width: 86%;
  max-height: 68px;
  object-fit: contain;
}

.logo-card-center {
  grid-column: 3 / span 2;
}

@media (max-width: 1180px) {
  .logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .logo-card-center {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .logo-card {
    min-height: 96px;
    padding: 18px;
    border-radius: 10px;
  }

  .logo-card img {
    max-height: 54px;
  }
}

@media (max-width: 440px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }
}

.offer-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(159, 252, 239, 0.22),
      transparent 30%
    ),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  color: #111820;
  padding: clamp(70px, 7vw, 112px) clamp(20px, 6vw, 92px);
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(42px, 6vw, 96px);
  width: min(1660px, 100%);
  margin: 0 auto;
  align-items: center;
}

.offer-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #dce8ef;
  box-shadow: 0 24px 70px rgba(18, 40, 59, 0.16);
}

.offer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: inherit;
  pointer-events: none;
}

.offer-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.offer-content {
  text-align: center;
}

.offer-eyebrow {
  margin: 0 0 12px;
  color: #0f7d95;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-content h2 {
  margin: 0;
  color: #16212b;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 700;
  line-height: 1.04;
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 22px;
  max-width: 680px;
  margin: 28px auto 0;
}

.offer-tags span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border: 1px solid rgba(18, 40, 59, 0.06);
  border-radius: 8px;
  color: #071017;
  font-size: clamp(0.98rem, 1.12vw, 1.2rem);
  font-weight: 400;
  box-shadow: 0 10px 24px rgba(18, 40, 59, 0.05);
}

.offer-tags span:nth-child(1) {
  background: #ffeceb;
}

.offer-tags span:nth-child(2) {
  background: #ddffe7;
}

.offer-tags span:nth-child(3) {
  background: #eeeeff;
}

.offer-tags span:nth-child(4) {
  background: #ffe9fb;
}

.offer-tags span:nth-child(5) {
  background: #fff5d6;
}

.offer-tags span:nth-child(6) {
  background: #dffcff;
}

.offer-cta {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
  padding: 15px 28px;
  border: 2px solid #101820;
  border-radius: 8px;
  background: #ffffff;
  color: #101820;
  font-size: clamp(1.05rem, 1.25vw, 1.34rem);
  font-weight: 500;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.offer-cta:hover {
  background: #101820;
  color: #ffffff;
  transform: translateY(-2px);
}

.offer-cta i {
  font-size: 1.35rem;
}

@media (max-width: 980px) {
  .offer-layout {
    grid-template-columns: 1fr;
  }

  .offer-content {
    text-align: left;
  }

  .offer-tags {
    justify-content: flex-start;
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .offer-section {
    padding: 52px 18px;
  }

  .offer-media {
    border-radius: 12px;
  }

  .offer-tags {
    gap: 10px;
  }

  .offer-tags span,
  .offer-cta {
    width: 100%;
  }
}

.products-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #101820;
  padding: clamp(64px, 7vw, 108px) clamp(20px, 5vw, 80px);
}

.products-header {
  width: min(1540px, 100%);
  margin: 0 auto clamp(34px, 4vw, 58px);
  text-align: center;
}

.products-eyebrow {
  margin: 0 0 10px;
  color: #0f7d95;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.products-header h2 {
  margin: 0;
  color: #071017;
  font-size: clamp(2.3rem, 3.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
}

.products-carousel {
  position: relative;
  width: min(1700px, 100%);
  margin: 0 auto;
}

.products-track {
  display: grid;
  grid-auto-columns: calc((100% - 72px) / 4);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 2px 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.products-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  color: #101820;
  scroll-snap-align: start;
  padding: 10px;
  border: 1px solid rgba(18, 40, 59, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(18, 40, 59, 0.09);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.product-card:hover {
  border-color: rgba(15, 125, 149, 0.28);
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(18, 40, 59, 0.15);
}

.product-image {
  position: relative;
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(8px, 1.2vw, 18px);
  border: 1px solid rgba(15, 125, 149, 0.08);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(159, 252, 239, 0.22),
      transparent 42%
    ),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.product-image::after {
  content: "";
  position: absolute;
  right: 16%;
  bottom: 12%;
  left: 16%;
  height: 18px;
  border-radius: 50%;
  background: rgba(18, 40, 59, 0.12);
  filter: blur(14px);
}

.product-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 108%;
  height: 100%;
  max-height: 300px;
  object-fit: contain;
}

.product-title {
  display: block;
  margin: 18px 8px 0;
  color: #071017;
  font-size: clamp(1.25rem, 1.45vw, 1.7rem);
  font-weight: 500;
  line-height: 1.22;
}

.product-description {
  display: block;
  margin: 12px 8px 6px;
  color: #263747;
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  font-weight: 400;
  line-height: 1.52;
}

.products-arrow {
  position: absolute;
  top: 38%;
  z-index: 4;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 24, 32, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #101820;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.products-arrow:hover {
  border-color: #101820;
  background: #101820;
  color: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.products-prev {
  left: 12px;
}

.products-next {
  right: 12px;
}

@media (max-width: 1180px) {
  .products-track {
    grid-auto-columns: calc((100% - 30px) / 2);
  }
}

@media (max-width: 640px) {
  .products-section {
    padding: 52px 18px;
  }

  .products-track {
    grid-auto-columns: 86%;
    gap: 18px;
  }

  .product-image {
    min-height: 300px;
  }

  .products-arrow {
    top: 32%;
  }
}

.iot-help-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(36, 41, 67, 0.78), rgba(36, 41, 67, 0.78)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.iot-help-section::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 50%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 92, 67, 0.34);
  filter: blur(34px);
  transform: translateX(-50%);
}

.iot-help-overlay {
  position: relative;
  z-index: 1;
  width: min(1540px, 100%);
  margin: 0 auto;
  padding: clamp(64px, 7vw, 98px) clamp(20px, 4vw, 44px);
}

.iot-help-header {
  text-align: center;
}

.iot-help-header p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.45rem, 2.1vw, 2.4rem);
  font-weight: 700;
}

.iot-help-header h2 {
  max-width: 1120px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(2.15rem, 3.2vw, 4rem);
  font-weight: 700;
  line-height: 1.16;
}

.iot-help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  margin-top: clamp(42px, 5vw, 72px);
}

.iot-help-card {
  display: grid;
  min-height: 210px;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: 30px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  backdrop-filter: blur(10px);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.iot-help-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-5px);
}

.iot-help-icon {
  display: inline-flex;
  width: 88px;
  height: 88px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  color: #ffffff;
  font-size: 2.45rem;
}

.iot-help-card h3 {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  font-weight: 500;
  line-height: 1.36;
}

@media (max-width: 980px) {
  .iot-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .iot-help-overlay {
    padding: 54px 18px;
  }

  .iot-help-grid {
    grid-template-columns: 1fr;
  }

  .iot-help-card {
    min-height: 180px;
  }
}

.why-choose-section {
  background: #ffffff;
  color: #071017;
  padding: clamp(64px, 7vw, 104px) clamp(20px, 6vw, 92px);
}

.why-choose-wrap {
  width: min(1680px, 100%);
  margin: 0 auto;
}

.why-choose-wrap h2 {
  margin: 0 0 clamp(38px, 5vw, 64px);
  color: #071017;
  font-size: clamp(2.6rem, 4.4vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.stat-card {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(24px, 2.4vw, 34px);
  border: 1px solid rgba(18, 40, 59, 0.08);
  border-radius: 14px;
  background: linear-gradient(135deg, #f4f7ff 0%, #e8ebf5 100%);
  box-shadow: 0 16px 38px rgba(18, 40, 59, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.stat-card:hover {
  border-color: rgba(15, 125, 149, 0.24);
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(18, 40, 59, 0.13);
}

.stat-card strong {
  display: block;
  color: #132235;
  font-size: clamp(2.05rem, 2.8vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 16px;
  color: #071017;
  font-size: clamp(1.08rem, 1.35vw, 1.55rem);
  font-weight: 400;
}

.stat-card i {
  color: #071017;
  font-size: clamp(2.25rem, 3vw, 3.4rem);
  opacity: 0.9;
}

@media (max-width: 1080px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .why-choose-section {
    padding: 52px 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 132px;
  }
}

.technology-section {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
  color: #111820;
  padding: clamp(66px, 7vw, 108px) clamp(20px, 5vw, 80px);
}

.technology-header {
  width: min(1540px, 100%);
  margin: 0 auto clamp(34px, 4vw, 58px);
  text-align: center;
}

.technology-eyebrow {
  margin: 0 0 10px;
  color: #0f7d95;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.technology-header h2 {
  margin: 0;
  color: #071017;
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
}

.technology-carousel {
  position: relative;
  width: min(1680px, 100%);
  margin: 0 auto;
}

.technology-track {
  display: grid;
  grid-auto-columns: calc((100% - 72px) / 4);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.technology-track::-webkit-scrollbar {
  display: none;
}

.technology-card {
  overflow: hidden;
  border: 1px solid rgba(18, 40, 59, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(18, 40, 59, 0.1);
  scroll-snap-align: start;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.technology-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(18, 40, 59, 0.16);
}

.technology-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
}

.technology-card-body {
  padding: 24px 24px 30px;
  text-align: center;
}

.technology-card h3 {
  margin: 0;
  color: #1a2632;
  font-size: clamp(1.35rem, 1.65vw, 1.9rem);
  font-weight: 500;
  line-height: 1.22;
}

.technology-card p {
  margin: 16px auto 0;
  color: #354756;
  font-size: clamp(0.98rem, 1.08vw, 1.18rem);
  font-weight: 400;
  line-height: 1.48;
}

.technology-arrow {
  position: absolute;
  top: 43%;
  z-index: 4;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 24, 32, 0.46);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #101820;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.technology-arrow:hover {
  background: #101820;
  color: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.technology-prev {
  left: 12px;
}

.technology-next {
  right: 12px;
}

@media (max-width: 1180px) {
  .technology-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .technology-section {
    padding: 52px 18px;
  }

  .technology-track {
    grid-auto-columns: 86%;
    gap: 18px;
  }

  .technology-arrow {
    top: 35%;
  }
}

.store-cta-section {
  background: #ffffff;
  padding: clamp(52px, 5.5vw, 82px) clamp(20px, 5vw, 80px);
}

.store-cta-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 90px);
  width: min(1680px, 100%);
  min-height: clamp(360px, 35vw, 520px);
  margin: 0 auto;
  align-items: center;
  overflow: hidden;
  padding: clamp(36px, 6vw, 86px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background-image:
    linear-gradient(90deg, rgba(4, 8, 18, 0.9), rgba(4, 8, 18, 0.62)),
    url("https://s3-tiaimgv1.s3.ap-south-1.amazonaws.com/uniconverge/images/digitaltransformation.webp");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(18, 40, 59, 0.18);
}

.store-cta-title {
  text-align: center;
}

.store-cta-title h2 {
  max-width: 620px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
}

.store-cta-copy {
  max-width: 760px;
}

.store-cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.08rem, 1.35vw, 1.48rem);
  font-weight: 400;
  line-height: 1.42;
}

.store-cta-copy p + p {
  margin-top: 26px;
}

.store-cta-button {
  display: inline-flex;
  min-width: 284px;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: clamp(1.08rem, 1.35vw, 1.45rem);
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.store-cta-button:hover {
  background: #ffffff;
  color: #08111c;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .store-cta-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .store-cta-title {
    text-align: left;
  }

  .store-cta-title h2 {
    margin: 0;
  }

  .store-cta-button {
    margin-top: 34px;
  }
}

@media (max-width: 560px) {
  .store-cta-section {
    padding: 52px 18px;
  }

  .store-cta-card {
    padding: 30px 22px;
    border-radius: 10px;
  }

  .store-cta-button {
    width: 100%;
    min-width: 0;
  }
}

.faq-contact-section {
  background:
    radial-gradient(
      circle at 10% 8%,
      rgba(159, 252, 239, 0.22),
      transparent 28%
    ),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  color: #081421;
  padding: clamp(44px, 5vw, 76px) clamp(20px, 6vw, 92px);
}

.faq-contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 0.9fr);
  gap: clamp(44px, 6vw, 86px);
  width: min(1680px, 100%);
  margin: 0 auto;
  align-items: start;
}

.faq-panel {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(18, 40, 59, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 54px rgba(18, 40, 59, 0.08);
}

.faq-eyebrow,
.contact-eyebrow {
  margin: 0 0 12px;
  color: #0f7d95;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-panel h2,
.contact-panel h2 {
  margin: 0;
  color: #0b2238;
  font-size: clamp(2.2rem, 3.3vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
}

.faq-accordion {
  display: grid;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 48px);
}

.faq-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid rgba(18, 40, 59, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(18, 40, 59, 0.05);
}

.faq-accordion .accordion-button {
  gap: 24px;
  padding: 22px;
  background: #ffffff;
  color: #081421;
  font-size: clamp(1.02rem, 1.25vw, 1.28rem);
  font-weight: 600;
  line-height: 1.35;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border-radius: 50%;
  background: #eefcff;
  color: #0f7d95;
  background-image: none !important;
  content: "+";
  font-size: 1.45rem;
  line-height: 34px;
  text-align: center;
  transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "-";
  transform: none;
}

.faq-accordion .accordion-body {
  max-width: 820px;
  margin: 0;
  padding: 0 62px 24px 22px;
  color: #263747;
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  font-weight: 400;
  line-height: 1.55;
}

.contact-panel {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(159, 252, 239, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at top right,
      rgba(159, 252, 239, 0.16),
      transparent 34%
    ),
    linear-gradient(145deg, #081c2b 0%, #102d3d 100%);
  box-shadow: 0 24px 66px rgba(8, 28, 43, 0.24);
}

.contact-panel .contact-eyebrow {
  color: #9ffcef;
}

.contact-panel h2 {
  color: #ffffff;
}

.contact-intro {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.16vw, 1.22rem);
  font-weight: 400;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 24px;
  /* margin-top: 24px; */
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-form label {
  display: grid;
}

.contact-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  font-weight: 400;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.contact-form input {
  min-height: 52px;
  padding: 12px 16px;
}

.contact-form select {
  min-height: 52px;
  padding: 12px 38px 12px 14px;
}

.phone-field {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
}

.phone-field select,
.phone-field input {
  border-radius: 8px;
}

.phone-field select {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.phone-field select option {
  color: #101820;
  background: #ffffff;
}

.contact-form textarea {
  min-height: 220px;
  resize: vertical;
  padding: 16px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(159, 252, 239, 0.82);
  box-shadow: 0 0 0 4px rgba(159, 252, 239, 0.12);
}

.contact-form .contact-submit {
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background: #9ffcef;
  color: #071017;
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.contact-form .contact-submit:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .faq-contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .faq-contact-section {
    padding: 52px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .phone-field {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-panel {
    padding: 22px;
    border-radius: 12px;
  }

  .faq-accordion .accordion-button {
    padding: 18px 54px 18px 18px;
  }

  .faq-accordion .accordion-body {
    padding: 0 18px 20px;
  }
}

/* Final responsive polish for the homepage. Keep this block last. */
@media (max-width: 1200px) {
  .slide-copy {
    width: min(880px, 100%);
  }

  .slide-copy h1 {
    font-size: clamp(3.2rem, 7.4vw, 6.6rem);
  }

  .product-image {
    min-height: 290px;
  }

  .product-image img {
    max-height: 260px;
  }
}

@media (max-width: 992px) {
  .hero-slider {
    min-height: 820px;
  }

  .slide {
    padding-bottom: 190px;
  }

  .slide-copy h1 {
    max-width: 760px;
  }

  .slide-copy > p {
    max-width: 680px;
  }

  .thumb-strip {
    width: calc(100vw - 28px);
  }

  .mission-showcase,
  .iot-solutions-section,
  .trusted-enterprises,
  .offer-section,
  .products-section,
  .iot-help-overlay,
  .why-choose-section,
  .technology-section,
  .store-cta-section,
  .faq-contact-section {
    padding-right: 24px;
    padding-left: 24px;
  }

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

  .solution-card,
  .solution-card-tall,
  .solution-card-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: 760px;
  }

  .slide {
    padding: 68px 18px 180px;
  }

  .slide-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4.7rem);
  }

  .slide-copy > p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .slide-actions {
    width: 100%;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    min-width: 0;
  }

  .thumb-strip {
    bottom: 26px;
    gap: 8px;
    padding: 6px 0;
  }

  .thumb {
    width: 64px;
  }

  .thumb-strip .slider-arrow {
    width: 34px;
    height: 34px;
  }

  .mission-copy p {
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .college-track img {
    width: 240px;
    height: 320px;
  }

  .iot-solutions-header h2,
  .trusted-header h2,
  .offer-content h2,
  .products-header h2,
  .technology-header h2,
  .why-choose-wrap h2,
  .faq-panel h2,
  .contact-panel h2 {
    font-size: clamp(2.05rem, 9vw, 3.2rem);
  }

  .solutions-grid,
  .logo-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .logo-card {
    min-height: 88px;
  }

  .offer-layout,
  .faq-contact-layout,
  .store-cta-card {
    grid-template-columns: 1fr;
  }

  .products-track,
  .technology-track {
    grid-auto-columns: 82%;
  }

  .product-image {
    min-height: 280px;
  }

  .product-image img {
    max-height: 250px;
  }

  .products-arrow,
  .technology-arrow {
    width: 40px;
    height: 40px;
  }

  .iot-help-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .mission-showcase,
  .iot-solutions-section,
  .trusted-enterprises,
  .offer-section,
  .products-section,
  .iot-help-overlay,
  .why-choose-section,
  .technology-section,
  .store-cta-section,
  .faq-contact-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-slider {
    min-height: 720px;
  }

  .slide-copy h1 {
    font-size: clamp(2.25rem, 13vw, 3.6rem);
  }

  .slide-actions {
    gap: 10px;
  }

  .thumb {
    width: 58px;
  }

  .read-more-link,
  .offer-cta,
  .store-cta-button,
  .contact-submit {
    width: 100%;
  }

  .product-title {
    font-size: 1.22rem;
  }

  .product-description,
  .technology-card p,
  .trusted-header p,
  .contact-intro {
    font-size: 0.98rem;
  }

  .phone-field {
    grid-template-columns: 1fr;
  }
}
