:root {
  --blue: #1775a8;
  --blue-dark: #0e476b;
  --blue-deep: #082f49;
  --cyan: #1cb8c8;
  --orange: #f7941d;
  --green: #2ea86b;
  --text: #172033;
  --muted: #627084;
  --light: #f5f9fc;
  --line: #dce7ef;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(8, 47, 73, .13);
  --radius: 22px;
  --container: 1180px;
    --container-fluid: 100%;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  /* background: #fff; */
  background: #f9f9ed;
  line-height: 1.65
}

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

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

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: auto
}
.container-fluid{
 padding: 0 50px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  padding: 10px 14px;
  z-index: 999
}

.skip-link:focus {
  left: 10px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 2px 16px rgba(12, 54, 82, .08);
  border-bottom: 1px solid rgba(220, 231, 239, .8)
}

.nav-bar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand img {
  width: 126px;
  height: auto
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0
}

.main-nav a {
  display: block;
  padding: 10px 16px;
  border-radius: 4px;
  color: #28364a;
  font-size: 16px;
  font-weight: 600
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
  background: #edf8fc
}

.has-menu {
  position: relative
}

.sub-menu {
  position: absolute !important;
  right: 0;
  top: 100%;
  display: block !important;
  min-width: 190px;
  padding: 9px !important;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s
}

.has-menu:hover .sub-menu,
.has-menu:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.sub-menu li {
  display: block
}

.sub-menu a {
  white-space: nowrap
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--blue-dark)
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #073a5a 0%, #116f99 52%, #1cb8c8 100%);
  color: #fff;
  padding: 82px 0
}

.home-hero {
  min-height: 620px;
  display: flex;
  align-items: center
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .19), transparent 27%), linear-gradient(90deg, rgba(5, 24, 44, .62), rgba(5, 24, 44, .13));
  pointer-events: none
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center
}

.hero h1 {
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1.02;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -.04em
}

.inner-hero h1 {
  font-size: clamp(34px, 4.6vw, 36px);
  text-align: center;
}

.hero h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.18;
  margin: 0 0 16px;
  font-weight: 700;
  color: #d7f6ff
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .9)
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-media {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, .18);
  padding: 10px
}

.hero-media img {
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover
}

/* Responsive home hero background */
.home-hero-image {
  background-image: url("../images/home-hero-reference.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
  min-height: 400px;
  max-height: 400px;
  padding: 0;
  align-items: flex-end;
  isolation: isolate
}

.home-hero-image:before {
  display: none
}

.hero-bottom-patch {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: rgba(0, 0, 0, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2
}

.hero-bottom-content {
  text-align: center;
  color: #fff
}

.hero-bottom-content h1 {
  margin: 0 0 3px;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0
}

.hero-bottom-content p {
  margin: 0;
  font-size: clamp(14px, 1.45vw, 20px);
  line-height: 1.5;
  font-weight: 600;
  color: #fff
}

@supports (height:100svh) {
  .home-hero-image {
    height: 500px;
    min-height: 500px;
    max-height: calc(100vh - 140px);
  }
}

@media (min-width:1400px) {
  .home-hero-image {
    height: 100vh;
    min-height: 500px;
    max-height: calc(100vh - 145px);
    background-position: center 74%
  }
}

.safer-hero-banner {
  background-image: url("../images/aim-dps-swim-banner.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: clamp(340px, 42vw, 450px);
  min-height: 340px;
  padding: 0;
  display: block;
  isolation: isolate
}

.safer-hero-banner:before {
  display: none
}

@supports (height:100svh) {
  .safer-hero-banner {
    height: clamp(340px, 42svw, 450px)
  }
}

.about-hero-banner {
  background-image: url("../images/about-banner-bg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: clamp(340px, 42vw, 450px);
  min-height: 340px;
  padding: 0;
  display: block;
  isolation: isolate
}

.about-hero-banner:before {
  display: none
}

@supports (height:100svh) {
  .about-hero-banner {
    height: clamp(340px, 42svw, 450px)
  }
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(247, 148, 29, .26);
  transition: .2s
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02)
}

.btn.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: none
}

.btn.white {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: none
}

.btn.ghost {
  background: #eef7fb;
  color: var(--blue-dark);
  box-shadow: none
}

.btn.small {
  padding: 9px 13px;
  font-size: 14px
}

.section {
  padding: 82px 0
}

.section.compact {
  padding: 62px 0
}

.soft-bg {
  background: var(--light)
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px
}

.section-heading h2,
.content-block h2,
.narrow h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--blue-dark)
}

.section-heading p,
.content-block p,
.narrow p {
  color: var(--muted);
  font-size: 17px
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800
}

.eyebrow.light {
  color: #bdf6ff
}

.two-col {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
  align-items: center
}

.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  padding: 8px
}

.image-card img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 7.5/7.5;
  object-fit: cover
}

.narrow {
  max-width: 900px
}

.cards {
  display: grid;
  gap: 26px
}

.cards.two {
  grid-template-columns: repeat(2, 1fr)
}

.cards.three {
  grid-template-columns: repeat(3, 1fr)
}

.cards.four {
  grid-template-columns: repeat(4, 1fr)
}

.solution-card,
.portfolio-card,
.mini-card,
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(8, 47, 73, .08);
  overflow: hidden;
  transition: .25s
}

.solution-card:hover,
.portfolio-card:hover,
.mini-card:hover,
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

.solution-card img,
.portfolio-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover
}

.solution-card div,
.portfolio-card div {
  padding: 24px
}

.solution-card h3,
.portfolio-card h3,
.mini-card h3,
.testimonial h3,
.info-list h3,
.feature-row h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 22px
}

.solution-card p,
.portfolio-card p,
.mini-card p,
.testimonial p,
.info-list p,
.feature-row p {
  margin: 0;
  color: var(--muted)
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0
}

.tags span {
  background: #e8f6fb;
  color: var(--blue-dark);
  border: 1px solid #ccecf5;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 800;
  color: var(--orange)
}

.text-link:after {
  content: "  >"
}

.value-grid .mini-card {
  padding: 25px
}

.testimonial {
  padding: 22px
}

.testimonial p {
  font-size: 14px
}

.testimonial img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  margin: 18px 0 12px
}

.testimonial span {
  display: block;
  color: var(--muted);
  font-size: 14px
}

.testimonial b {
  display: inline-block;
  margin-top: 9px;
  background: #edf8fc;
  color: var(--blue);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px
}

.info-list {
  display: grid;
  gap: 18px
}

.info-list>div,
.feature-row>div {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(8, 47, 73, .06)
}

.portfolio-card {
  display: flex;
  flex-direction: column
}

.portfolio-card>div {
  display: flex;
  flex: 1;
  flex-direction: column
}

.portfolio-card .text-link {
  margin-top: auto
}

.portfolio-card.coming {
  opacity: .82
}

.portfolio-card.coming .text-link {
  color: var(--muted)
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px
}

.product-intro .benefit-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 26px
}

.benefit-block h3 {
  font-size: 26px;
  margin: 0 0 16px;
  color: var(--blue-dark)
}

.benefits {
  display: grid;
  gap: 15px
}

.benefits .mini-card {
  padding: 18px;
  box-shadow: none
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0
}

.feature-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  padding: 18px 18px 18px 22px;
  border-radius: 10px;
  font-weight: 800;
  color: var(--blue-dark);
  box-shadow: 0 8px 24px rgba(8, 47, 73, .06)
}

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

.workflow div {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  border-radius: 16px;
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow)
}

.workflow span {
  display: block;
  color: #aeeafa;
  font-weight: 800;
  margin-bottom: 12px
}

.workflow h3 {
  margin: 0;
  font-size: 22px
}

.tabs {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden
}

.tab-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px;
  background: #f8fbfd;
  border-bottom: 1px solid var(--line)
}

.tab-btn {
  border: 1px solid transparent;
  background: transparent;
  border-radius: 4px;
  padding: 11px 15px;
  color: var(--blue-dark);
  font-weight: 800;
  cursor: pointer
}

.tab-btn.active {
  background: var(--blue);
  color: #fff
}

.tab-panel {
  display: none;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
  padding: 24px
}

.tab-panel.active {
  display: grid
}

.tab-panel img {
  border-radius: 12px;
  border: 1px solid var(--line);
  width: 100%;
  object-fit: cover
}

.tab-panel p {
  font-size: 17px;
  color: var(--muted);
  margin: 0
}

.contact-strip {
  background: linear-gradient(135deg, #073a5a, #116f99);
  color: #fff
}

.cta-wrap {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 36px;
  align-items: center
}

.cta-text h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.12;
  margin: 0 0 15px
}

.cta-text p {
  color: rgba(255, 255, 255, .85);
  font-size: 18px
}

.quick-form {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  gap: 12px
}

.quick-form h3 {
  margin: 0;
  font-size: 24px
}

.quick-form p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .84)
}

.quick-form input,
.quick-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: #fff;
  color: var(--text);
  padding: 12px 13px;
  border-radius: 4px;
  font: inherit
}

.quick-form textarea {
  min-height: 100px;
  resize: vertical
}

.form-status {
  font-weight: 700;
  color: #c8fff4;
  min-height: 18px
}

.site-footer {
  background: #0b2133;
  color: #dce7ef;
  padding: 58px 0 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 38px
}

.site-footer img {
  width: 164px;
  margin-bottom: 14px
}

.site-footer h4 {
  margin: 0 0 16px;
  color: #fff
}

.site-footer p,
.site-footer span,
.site-footer a {
  color: #c9d8e2
}

.footer-list {
  display: grid;
  gap: 8px
}

.footer-list strong {
  color: #fff;
  margin-top: 8px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  margin-top: 36px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #aec1cf;
  font-size: 14px
}

.footer-bottom p {
  margin: 0
}

.cookie-banner {
  position: fixed;
  z-index: 150;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 12px;
  padding: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.cookie-banner.show {
  display: flex
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  display: none;
  z-index: 160;
  place-items: center;
  padding: 20px
}

.modal-backdrop.show {
  display: grid
}

.modal-card {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow)
}

.check {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 18px 0
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px
}


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

.industry-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(8, 47, 73, .08);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.industry-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
}

.industry-card h3 {
  margin: 0;
  padding: 22px 14px 24px;
  color: var(--blue-dark);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s, transform .65s
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.modern-challenges-wrap {
  align-items: stretch;
  gap: 42px
}

.modern-visual-card {
  padding: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%)
}

.modern-visual-card img {
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff
}

.challenge-copy {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.challenge-copy>p {
  max-width: 640px
}

.challenge-points {
  display: grid;
  gap: 18px;
  margin-top: 12px
}

.challenge-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(8, 47, 73, .06)
}

.challenge-item h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 24px
}

.challenge-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px
}

.challenge-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px
}
.set-order2{
  order:1
}
.set-order1{
 order:2
}


@media (max-width:980px) {

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


  .hero-grid,
  .two-col,
  .cta-wrap,
  .tab-panel {
    grid-template-columns: 1fr
  }

  .cards.three,
  .cards.four,
  .feature-list {
    grid-template-columns: repeat(2, 1fr)
  }

  .workflow {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .reverse-mobile .image-card,
  .modern-visual-card {
    order: -1
  }

  .home-hero {
    min-height: auto
  }

  .home-hero-image {
    height: 400px;
    min-height: 400px;
    max-height: 400px;
    background-position: center center
  }

  .safer-hero-banner,
  .about-hero-banner {
    height: clamp(300px, 48vw, 460px);
    min-height: 300px;
    background-position: center center
  }
}

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

  .industry-card img {
    height: 220px;
  }

  .home-hero-image {
    height: 400px;
    min-height: 400px;
    max-height: 400px;
    background-position: center top
  }

  .safer-hero-banner,
  .about-hero-banner {
    height: clamp(240px, 52vw, 360px);
    min-height: 240px;
    background-position: center center
  }

  .hero-bottom-patch {
    height: 80px
  }

  .hero-bottom-content h1 {
    font-size: 17px
  }

  .hero-bottom-content p {
    font-size: 13px
  }

  .nav-bar {
    height: 68px
  }

  .brand img {
    width: 108px
  }

  .menu-toggle {
    display: flex
  }

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 75px;
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding: 12px
  }

  .main-nav.open {
    display: block
  }

  .main-nav ul {
    display: block
  }

  .main-nav a {
    padding: 12px
  }

  .sub-menu {
    position: static !important;
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 18px !important
  }

  .hero {
    padding: 58px 0
  }

  .hero h1 {
    font-size: 38px
  }

  .hero-subtitle {
    font-size: 18px
  }

  .section {
    padding: 56px 0
  }

  .cards.two,
  .cards.three,
  .cards.four,
  .feature-row,
  .feature-list,
  .workflow,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .cookie-banner {
    display: none !important
  }

  .tab-nav {
    display: grid
  }

  .cta-wrap {
    gap: 24px
  }

  .container {
    width: min(var(--container), calc(100% - 28px))
  }
  .set-order2{
  order:1
}
.set-order1{
 order:2
}


}

@media (max-width:480px) {
  .home-hero-image {
    height: 400px;
    min-height: 400px;
    max-height: 400px;
    background-position: center top
  }

  .safer-hero-banner,
  .about-hero-banner {
    height: clamp(180px, 56vw, 300px);
    min-height: 180px;
    background-position: center center
  }

  .hero-bottom-content h1 {
    font-size: 16px
  }

  .hero-bottom-content p {
    font-size: 12.5px
  }
}
.object-fit-cover{
  object-fit: cover;
}
