﻿@charset "UTF-8";
/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #333f49;
  color: #fff;
}

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

img {
  display: block;
  max-width: 100%;
}

#navigation {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

/* ─── Top Menu ───────────────────────────────────────── */
.top-menu {
  background-color: #462e8d;
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 38px;
}

.top-menu-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-menu-left a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.16px;
  color: rgb(180.5454545455, 165.2727272727, 225.7272727273);
  line-height: 20px;
}
.top-menu-left a:hover {
  color: #fff;
}
.top-menu-left .active-tab a {
  color: #fff;
  font-weight: 600;
}

.top-menu-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.top-menu-right a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.14px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}
.top-menu-right a .fa, .top-menu-right a .bi {
  font-size: 1.25em;
}
.top-menu-right a .fa.bi-person, .top-menu-right a .bi.bi-person {
  font-size: 1.35rem;
}

/* ─── Main Nav ───────────────────────────────────────── */
.main-menu {
  height: 79px;
  display: flex;
  align-items: center;
  padding: 0 26px;
  position: relative;
  z-index: 100;
  background-color: #333f49;
}

.main-menu-logo {
  width: 167px;
  height: 52px;
  flex-shrink: 0;
}
.main-menu-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: 116px;
}
.main-nav .menu-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-nav .menu-item a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16px;
  color: #fff;
}
.main-nav .menu-item a .bi {
  display: inline-block;
  font-size: 14px;
  transition: transform 0.2s ease;
}
.main-nav .menu-item a.open .bi {
  transform: rotate(90deg);
}
.main-nav .menu-item ul.dd-menu {
  background-color: #333f49;
  min-width: 200px;
  padding: 6px 0;
  position: absolute;
  top: calc(100% + 27px);
  left: 0;
  list-style: none;
  border-top: none;
  box-shadow: inset 0 6px 6px rgba(0, 0, 0, 0.3);
}
.main-nav .menu-item ul.dd-menu li a {
  display: inline-block;
  white-space: nowrap;
  width: 100%;
  font-weight: 500;
  padding: 6px 20px;
}
.main-nav .menu-item ul.dd-menu li a:hover {
  background-color: #d7d9db;
  color: #333f49;
}
.main-nav .menu-item ul.dd-menu li a .bi {
  transition: all 0.3s ease-in-out;
}
.main-nav .menu-item ul.dd-menu li a.open .bi {
  transform: rotate(90deg);
}

.main-menu-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-phone {
  background: #fff;
  border: 3px solid #8172b2;
  border-radius: 6px;
  padding: 0 22px;
  height: 57px;
  font-size: 18px;
  font-weight: 700;
  color: #8172b2;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-phone:hover {
  background: #f0ecfb;
}

.btn-get-started {
  background: rgb(137.8431192661, 123.8958715596, 183.4041284404);
  border: 3px solid #8172b2;
  border-radius: 6px;
  padding: 0 24px;
  height: 57px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-get-started:hover {
  background: rgb(114.2614678899, 97.5068807339, 168.9931192661);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #2b333c;
  padding: 0 26px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease, padding 0.35s ease;
}
.mobile-nav.open {
  max-height: 900px;
  padding: 0;
}
.mobile-nav > a, .mobile-nav > .menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 26px;
}
.mobile-nav > a:last-child, .mobile-nav > .menu-item:last-child {
  border-bottom: none;
}
.mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 12px 0;
}
.mobile-nav > a {
  padding: 12px 26px;
}
.mobile-nav .menu-item .dd-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0;
}
.mobile-nav .menu-item .dd-toggle.open .bi {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}
.mobile-nav .menu-item .dd-toggle .bi {
  transition: transform 0.2s ease;
}
.mobile-nav .menu-item ul.dd-menu {
  list-style: none;
  padding: 0;
  margin: 0 -26px;
  background: #fff;
}
.mobile-nav .menu-item ul.dd-menu li {
  padding: 0 26px;
}
.mobile-nav .menu-item ul.dd-menu li:hover {
  background-color: rgb(71.9758064516, 88.9112903226, 103.0241935484);
}
.mobile-nav .menu-item ul.dd-menu li:hover a {
  color: #fff;
}
.mobile-nav .menu-item ul.dd-menu li a {
  color: #333f49;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  display: block;
}

.body-content {
  padding-top: 115px;
}

/* ─── Common Content ──────────────────────────────────── */
.hero-content, .smarter-content {
  position: relative;
  display: table;
  margin: 0 30% 0 10%;
  z-index: 1;
  padding: 100px 15px;
  max-width: 60%;
}

h1.eyebrow {
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.hero-title, .smarter-title, .section-title, .next-step-title, .monitoring-title, .partners-title, .customers-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-subtitle, .smarter-desc, .section-subtitle, .next-step-subtitle, .monitoring-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 52px;
}

.section-title, .section-subtitle, .industries-title, .next-step-title, .next-step-subtitle .customers-title, .partners-title {
  text-align: center;
}

.learn-more-title, .customers-title, .partners-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.partners-title, .customers-title {
  margin-bottom: 0.5rem;
}

.next-step-title {
  margin-bottom: 2rem;
}

/* ─── Hero ───────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Shared CTA Button ───────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8172b2;
  border-radius: 5px;
  height: 80px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.6px;
  text-align: center;
  padding: 0 48px;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-cta:hover {
  background: rgb(114.2614678899, 97.5068807339, 168.9931192661);
}

.btn-brand {
  color: #fff;
  font-weight: 600;
  background: rgb(137.8431192661, 123.8958715596, 183.4041284404);
  border: 2px solid #8172b2;
  transition: background 0.2s;
}
.btn-brand:hover {
  color: #fff;
  background: rgb(114.2614678899, 97.5068807339, 168.9931192661);
}

.video-container {
  display: table;
  margin: auto;
  width: 80%;
}
.video-container iframe {
  width: 100%;
  height: 100%; /* Ensures it fills the container's calculated space */
  aspect-ratio: 16/9; /* For a 16:9 ratio, commonly used for YouTube */
}

.hr-custom {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.4) 45%, rgba(255, 255, 255, 0.6) 55%, rgba(255, 255, 255, 0) 100%);
  border: none;
  height: 1px;
  margin: 1rem 0 1.5rem;
}

.text-brand {
  color: #462e8d;
}

.text-brand {
  color: #8172b2;
}

.text-medium {
  font-weight: 500;
}

.text-semibold {
  font-weight: 600;
}

.x-small {
  font-size: 0.75rem;
}

.modal-header {
  background-color: #333f49;
  color: #fff;
}
.modal-header .btn-close {
  color: #fff;
  background: none;
  font-size: 32px;
  line-height: 1;
  opacity: 0.7;
}
.modal-header .btn-close:hover {
  opacity: 1;
}

.modal-body {
  background-color: #d7d9db;
  color: #333f49;
}
.modal-body.no-footer {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.form-control, .form-select, .form-check-input {
  border-color: #8172b2;
  border-width: 2px;
}
.form-control:focus, .form-select:focus, .form-check-input:focus {
  border-color: #8172b2;
  box-shadow: none;
}

.form-check-input:checked {
  border-color: #8172b2;
  background-color: #8172b2;
}

/* ─── Solutions ──────────────────────────────────────── */
.solutions-section {
  padding: 80px 78px 100px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  place-content: center;
}
.solutions-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.solution-card {
  background: #d7d9db;
  border-radius: 6px;
  padding: 70px 48px 48px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.solution-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.solution-card-icon {
  width: 76px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 30px;
}

.solution-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #333f49;
  line-height: 42px;
  margin-bottom: 14px;
}

.solution-card-desc {
  font-size: 18px;
  font-weight: 400;
  color: #333f49;
  line-height: 26px;
  flex: 1;
}

.learn-more-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #333f49;
  line-height: 42px;
  margin-top: 18px;
  position: relative;
}

.learn-more-link::after {
  content: "";
  display: block;
  height: 3px;
  width: 101px;
  background: #8172b2;
  margin-top: 2px;
}

.learn-more-link:hover {
  color: #8172b2;
}

/* ─── Industries ─────────────────────────────────────── */
.industries-section {
  padding: 60px 70px 80px;
}

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

.industry-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.industry-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.industry-card:hover img {
  transform: scale(1.04);
}

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 52px 32px;
}

.industry-card-title {
  font-size: 35px;
  font-weight: 700;
  color: #fff;
  line-height: normal;
  margin-bottom: 8px;
}

.industry-learn-more {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: normal;
}
.industry-learn-more::after {
  content: "";
  display: block;
  height: 3px;
  background: #8172b2;
  width: 101px;
  margin-top: 4px;
}

/* ─── Smarter Approach ───────────────────────────────── */
.smarter-section {
  position: relative;
  display: flex;
  align-items: center;
}

.smarter-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smarter-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.smarter-features li {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.175px;
  margin-bottom: 0.75rem;
}
.smarter-features li .fa {
  color: #8172b2;
}

/* ─── Next Step ──────────────────────────────────────── */
.next-step-section {
  padding: 100px 78px;
  text-align: center;
}

/* ─── Monitoring ─────────────────────────────────────── */
.monitoring-section {
  position: relative;
}

.monitoring-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.monitoring-content {
  position: relative;
  z-index: 1;
  padding: 67px 200px 80px;
}

.monitoring-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.monitoring-card {
  background: #d7d9db;
  border-radius: 5px;
  padding: 73px 56px 50px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.monitoring-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.monitoring-card-icon {
  width: 76px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 30px;
}

.monitoring-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #333f49;
  line-height: 42px;
  margin-bottom: 14px;
}

.monitoring-card-desc {
  font-size: 18px;
  font-weight: 400;
  color: #333f49;
  line-height: 26px;
}

/* ─── Our Customers ──────────────────────────────────── */
.customers-section {
  padding: 60px 112px 70px;
  text-align: center;
}

.customers-logos {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.customers-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: customers-scroll 40s linear infinite;
  padding: 10px 0;
}
.customers-track img {
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes customers-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*.customers-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

    .customers-logos img {
        // height: 40px;
    }*/
/* ─── Learn More ─────────────────────────────────────── */
.learn-more-section {
  padding: 60px 201px 80px;
  text-align: center;
}

.learn-more-bg {
  background: #d7d9db;
  border-radius: 8px;
  padding: 50px;
}

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

.learn-more-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.learn-more-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.learn-more-card > img {
  width: 100%;
  height: 361px;
  object-fit: cover;
  display: block;
}

.learn-more-card-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333f49;
  line-height: 1.5;
  margin-top: 24px;
  text-align: left;
}

.learn-more-card-title:hover {
  color: #8172b2;
}

.learn-more-card-title::after {
  content: "";
  display: block;
  height: 4px;
  background: #8172b2;
  width: 100%;
  margin-top: 14px;
}

/* ─── Partners ───────────────────────────────────────── */
.partners-section {
  padding: 50px 0 30px;
  text-align: center;
  overflow-x: clip;
}

.partners-logos {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: partners-scroll 40s linear infinite;
  padding: 10px 0;
}
.partners-track img {
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes partners-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ─── footer ───────────────────────────────────────── */
footer {
  background-color: rgb(36.3169354839, 44.8620967742, 51.9830645161);
  background-image: url("../images/footer-bg-large.webp");
  padding: 40px 60px 10px;
}
footer p {
  margin-bottom: 0.5rem;
}
footer ul.footer-links, footer ul.social-links, footer ul.footer-horizontal-links {
  list-style: none;
  padding-left: 0;
  font-size: 0.75rem;
}
footer ul.footer-links li > a, footer ul.social-links li > a, footer ul.footer-horizontal-links li > a {
  opacity: 0.75;
}
footer ul.footer-links li > a:hover, footer ul.social-links li > a:hover, footer ul.footer-horizontal-links li > a:hover {
  opacity: 1;
}
footer ul.social-links li {
  float: left;
  margin-right: 0.5rem;
}
footer ul.social-links li span {
  display: none;
}
footer .footer-horizontal-links {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
footer .footer-horizontal-links li {
  margin-left: 1rem;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  footer .footer-horizontal-links {
    justify-content: center;
  }
  footer .copyright {
    text-align: center;
  }
}
@media (max-width: 600px) {
  footer {
    padding-left: 30px;
    padding-right: 30px;
  }
  footer p {
    font-size: 1.25rem;
  }
  footer ul.footer-links, footer ul.social-links {
    font-size: 1rem;
  }
  footer ul.footer-horizontal-links {
    font-size: 0.9rem;
  }
}

@media (max-width: 1400px) {
  .hero-title, .smarter-title, .section-title, .next-step-title, .monitoring-title, .learn-more-title, .partners-title, .customers-title {
    font-size: 2.75rem;
    line-height: 1.35;
  }
  .hero-subtitle, .smarter-desc, .section-subtitle, .next-step-subtitle, .monitoring-subtitle {
    font-size: 1.3rem;
    line-height: 1.35;
  }
  .monitoring-content {
    padding: 67px 78px 80px;
  }
  .monitoring-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .learn-more-section {
    padding: 60px 78px 80px;
  }
}
@media (max-width: 1300px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1100px) {
  .top-menu {
    display: none;
  }
  .main-nav {
    display: none;
  }
  .main-menu-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
  .body-content {
    padding-top: 78px;
  }
  .hero-section {
    height: auto;
    min-height: 600px;
  }
  .hero-title, .smarter-title, .section-title, .next-step-title, .monitoring-title, .learn-more-title, .partners-title, .customers-title {
    font-size: 2.5rem;
  }
  .hero-subtitle, .smarter-desc, .section-subtitle, .next-step-subtitle, .monitoring-subtitle {
    font-size: 1.25rem;
  }
  .btn-cta {
    font-size: 20px;
    min-width: auto;
    width: auto;
    height: 58px;
    padding: 0 28px;
  }
  .video-container {
    width: 100%;
  }
  .solutions-section,
  .industries-section,
  .next-step-section,
  .customers-section,
  .learn-more-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .solutions-grid.three-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .smarter-content {
    padding: 60px 24px;
    max-width: 70%;
  }
  .smarter-desc {
    font-size: 20px;
  }
  .smarter-features li {
    font-size: 18px;
  }
  .monitoring-content {
    padding: 60px 24px 60px;
  }
  .monitoring-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .customers-logos {
    gap: 32px;
  }
  .customers-logos img {
    height: 44px;
  }
  .learn-more-section {
    padding: 60px 24px 60px;
  }
  .learn-more-bg {
    padding: 24px;
  }
  .learn-more-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .learn-more-card > img {
    height: 240px;
  }
  .learn-more-card-title {
    font-size: 24px;
  }
  .partners-track {
    gap: 40px;
    animation-duration: 30s;
  }
}
@media (max-width: 900px) {
  .hero-content {
    margin: 0 10%;
    max-width: unset;
  }
  .solutions-grid, .solutions-grid.three-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .hero-title, .smarter-title, .section-title, .next-step-title, .monitoring-title, .learn-more-title, .partners-title, .customers-title {
    font-size: 38px;
    line-height: 46px;
  }
  .hero-content, .smarter-content {
    margin: 0 15px;
    padding: 100px 0;
    max-width: 100%;
  }
  .industry-card-title {
    font-size: 28px;
  }
}
