:root {
  --navy: #002653;
  --navy2: #001838;
  --blue: #0076db;
  --blue2: #0b94ff;
  --ink: #051f4d;
  --text: #102f61;
  --soft: #f5fbff;
  --line: #e5eef8;
  --shadow: 0 20px 45px rgba(0, 42, 105, .12);
  --radius: 18px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden
}

a {
  text-decoration: none
}

.site-wrap {
  width: min(1240px, calc(100% - 52px));
  margin-inline: auto
}

.topbar {
  height: 42px;
  background: linear-gradient(90deg, #001b42 0%, #00316a 50%, #001b42 100%);
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500
}

.socials a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  font-size: 13px;
  transition: .3s
}

.socials a:hover {
  background: var(--blue);
  transform: translateY(-2px)
}

.mainnav {
  height: 104px;
  background: #fff;
  box-shadow: 0 7px 23px rgba(1, 33, 82, .08);
  z-index: 100;
  position: sticky;
  top: 0
}

.navbar-brand img {
  width: 285px;
  height: 70px;
  object-fit: contain;
  object-position: left center
}

.mainnav .nav-link {
  color: #051f4d !important;
  font-size: 14px;
  font-weight: 800;
  margin: 0 13px;
  padding: 38px 0 !important;
  position: relative
}

.mainnav .nav-link.active,
.mainnav .nav-link:hover {
  color: #006ed2 !important
}

.mainnav .nav-link.active:after,
.mainnav .nav-link:hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 3px;
  background: var(--blue);
  border-radius: 8px
}

.dropdown-menu {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0, 33, 82, .15);
  padding: 10px
}

.dropdown-item {
  font-size: 13px;
  font-weight: 700;
  border-radius: 9px;
  padding: 9px 13px
}

.dropdown-item:hover {
  background: #eaf6ff;
  color: var(--blue)
}

.pill-btn {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0087f5, #0058bf);
  color: #fff !important;
  font-size: 14px;
  font-weight: 900;
  padding: 13px 26px;
  box-shadow: 0 12px 22px rgba(0, 105, 211, .25);
  transition: .35s
}

.pill-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 19px 34px rgba(0, 105, 211, .33)
}

.outline-pill {
  border: 2px solid #0a74d5;
  border-radius: 999px;
  color: #065bb7 !important;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 12px 24px;
  transition: .35s
}

.outline-pill:hover {
  background: #f1f9ff;
  transform: translateY(-2px)
}

.hero {
  height: 565px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 42%, #eff9ff 100%)
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/aqua-hero-section2.png') right center/auto 565px no-repeat;
  animation: softFloat 7s ease-in-out infinite
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 38%, rgba(255, 255, 255, .22) 58%, rgba(255, 255, 255, 0) 100%)
}

.hero-layout {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 470px 1fr;
  align-items: center
}

.hero-copy {
  padding-top: 2px
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #e4f4ff;
  color: #006dca;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 8px 14px;
  margin-bottom: 17px
}

.hero h1 {
  font-size: 60px;
  line-height: .97;
  font-weight: 950;
  letter-spacing: -2.2px;
  margin: 0 0 18px;
  color: #0071d8
}

.hero h1 span {
  color: #061f4f
}

.hero p {
  font-size: 24px;
  line-height: 1.22;
  margin: 0 0 24px;
  font-weight: 650
}

.hero p strong {
  color: #0076dc
}

.hero-features {
  width: 455px;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px 10px;
  margin-bottom: 24px
}

.hero-features div {
  text-align: center;
  border-right: 1px solid #dce9f6
}

.hero-features div:last-child {
  border-right: 0
}

.hero-features i {
  display: block;
  color: var(--blue);
  font-size: 31px;
  line-height: 1;
  margin-bottom: 8px
}

.hero-features span {
  font-size: 12px;
  font-weight: 800;
  color: #193a67;
  line-height: 1.25
}

.hero-actions {
  display: flex;
  gap: 17px;
  align-items: center
}

.tech-list {
  justify-self: end;
  width: 158px;
  display: grid;
  gap: 9px;
  margin-right: 18px
}

.tech-list div {
  height: 68px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 24px rgba(0, 55, 120, .09);
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid #e5f0fb
}

.tech-list i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid #d4ebff;
  color: #0075dc;
  font-size: 17px
}

.tech-list span {
  font-size: 12px;
  line-height: 1.15;
  font-weight: 850;
  color: #163462
}

.choose {
  padding: 0 0 60px
}

.blue-panel {
  background: linear-gradient(115deg, #0065c9, #001d48);
  border-radius: 20px;
  color: #fff;
  padding: 28px 40px 31px;
  box-shadow: var(--shadow)
}

.blue-panel h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 950;
  margin: 0 0 28px
}

.blue-panel h2 span {
  color: #25aaff
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr)
}

.choose-grid article {
  min-height: 98px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .22)
}

.choose-grid article:last-child {
  border-right: 0
}

.choose-grid i {
  font-size: 38px;
  color: #ecf8ff;
  margin-bottom: 10px
}

.choose-grid h3 {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
  margin: 0;
  color: #fff
}

.products {
  padding: 0 0 35px;
  position: relative
}

.section-title {
  text-align: center;
  position: relative
}

.section-title h2 {
  font-size: 31px;
  font-weight: 950;
  margin: 0 0 5px;
  color: #092455
}

.section-title h2 span,
.trusted h2 span {
  color: #0075dc
}

.section-title p {
  font-size: 15px;
  color: #203f6a;
  margin: 0
}

.view-products {
  position: absolute;
  right: 54px;
  top: 0;
  padding: 11px 19px;
  font-size: 13px
}

.productSwiper {
  margin: 38px 64px 0;
  padding: 0 0 18px
}

.product-card {
  height: 305px;
  background: #fff;
  border: 1px solid #e6eef7;
  border-radius: 13px;
  text-align: center;
  padding: 18px 12px 17px;
  box-shadow: 0 15px 33px rgba(0, 40, 100, .065);
  transition: .35s;
  display: flex;
  flex-direction: column;
  align-items: center
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 23px 42px rgba(0, 75, 150, .15)
}

.product-card img {
  width: 273px;
  height: 143px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 6px;
  mix-blend-mode: multiply
}

.product-card h3 {
  font-size: 17px;
  color: #0075dc;
  font-weight: 950;
  margin: 0 0 7px
}

.product-card p {
  font-size: 12px;
  line-height: 1.42;
  min-height: 53px;
  color: #223d67;
  margin: 0 0 10px
}

.product-card a {
  font-size: 12px;
  font-weight: 900;
  color: #0075dc;
  border: 1.6px solid #0075dc;
  border-radius: 999px;
  padding: 7px 17px;
  margin-top: auto
}

.swiper-nav,
.logo-arrow {
  border: 1px solid #d8e9fa;
  background: #fff;
  color: #0074d8;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  position: absolute;
  z-index: 4
}

.product-prev {
  left: 0;
  top: 57%
}

.product-next {
  right: 0;
  top: 57%
}

.solutions {
  padding: 24px 0 36px;
  position: relative;
  background: #E4F4FF;
  overflow: hidden
}

.solutions:before,
.solutions:after {
  content: "";
  position: absolute;
  width: 220px;
  height: 420px;
  /*background: url('../images/banner.png') center/cover no-repeat;*/
  opacity: .13;
  filter: saturate(1.2);
  pointer-events: none
}

.solutions:before {
  left: -150px;
  bottom: 0
}

.solutions:after {
  right: -145px;
  bottom: 0;
  transform: scaleX(-1)
}

.solution-layout {
  display: grid;
  grid-template-columns: 31% 34% 35%;
  align-items: center;
  gap: 18px
}

.solution-copy h2 {
  font-size: 31px;
  line-height: 1.05;
  font-weight: 950;
  margin: 10px 0 12px;
  color: #082555
}

.solution-copy h2 span {
  color: #0075dc
}

.solution-copy p {
  max-width: 320px;
  font-size: 13px;
  line-height: 1.6;
  color: #24436f;
  margin-bottom: 17px
}

.solution-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 100% center;
  border-radius: 2px;
  mix-blend-mode: multiply;
}

.solution-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 24px
}

.solution-list li {
  font-size: 16px;
  font-weight: 800;
  color: #14335f;
  margin-bottom: 17px
}

.solution-list i {
  color: #0075dc;
  margin-right: 12px
}

.feature-cards {
  padding: 40px 0 22px
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.2fr .86fr .82fr;
  gap: 24px
}

.danger-box {
  min-height: 306px;
  border-radius: 15px;
  background: linear-gradient(135deg, #00366e, #002051);
  color: #fff;
  padding: 34px 25px;
  display: grid;
  grid-template-columns: 37% 63%;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow)
}

.danger-box:after,
.ready-box:after,
.news-panel:after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -40px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, #8fd9ff 0, transparent 68%);
  opacity: .28
}

.danger-img-wrap {
  position: relative;
  width: 160px;
  height: 230px
}

.danger-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.08) saturate(.95)
}

.danger-img-wrap:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 58px;
  width: 150px;
  height: 150px;
  border: 11px solid #ed1b24;
  border-radius: 50%;
  z-index: 2
}

.danger-img-wrap:after {
  content: "";
  position: absolute;
  left: 11px;
  top: 131px;
  width: 147px;
  height: 12px;
  background: #ed1b24;
  border-radius: 20px;
  transform: rotate(-43deg);
  z-index: 3
}

.danger-box h2,
.consult-box h2,
.ready-box h2 {
  font-size: 28px;
  line-height: 1.08;
  font-weight: 950;
  margin: 0 0 20px
}

.danger-box p {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
  margin: 0 0 15px
}

.danger-box i {
  color: #42b8ff;
  margin-right: 9px
}

.consult-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 35px 30px
}

.consult-box p {
  font-size: 14px;
  font-weight: 700;
  color: #264672;
  margin-bottom: 19px
}

.consult-box label {
  position: relative;
  display: block;
  margin-bottom: 12px
}

.consult-box input {
  width: 100%;
  height: 46px;
  border: 1px solid #e2edf8;
  border-radius: 8px;
  background: #fbfdff;
  outline: 0;
  padding: 0 44px 0 16px;
  color: #12315f
}

.consult-box label i {
  position: absolute;
  right: 16px;
  top: 13px;
  color: #7890ad
}

.ready-box {
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #004d9f, #002150);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.ready-box p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600
}

.support-row {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 22px 0;
  font-weight: 900;
  line-height: 1.45
}

.support-row i {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 29px
}

.white-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #0061bd;
  border-radius: 999px;
  padding: 12px 34px;
  font-weight: 950
}

.stats {
  padding: 0 0 26px
}

.stat-panel {
  background: linear-gradient(115deg, #00366f, #001f4f);
  border-radius: 16px;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 25px 40px;
  box-shadow: var(--shadow)
}

.stat-panel article {
  display: grid;
  grid-template-columns: 64px auto;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, .18);
  min-height: 70px
}

.stat-panel article:last-child {
  border-right: 0
}

.stat-panel i {
  font-size: 45px;
  color: #0c9bff
}

.stat-panel strong {
  display: block;
  font-size: 35px;
  line-height: 1;
  font-weight: 950
}

.stat-panel span {
  font-size: 16px;
  font-weight: 500;
  color: #e3efff;
}

.trusted {
  padding: 4px 0 24px;
  text-align: center;
  position: relative
}

.trusted h2 {
  font-size: 26px;
  font-weight: 950;
  margin-bottom: 26px
}

.logoSwiper {
  margin: 0 52px
}

.logoSwiper .swiper-slide {
  min-height: 52px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 950;
  color: #243f6a;
  border-right: 1px solid #d7e3f0
}

.logoSwiper .swiper-slide:last-child {
  font-size: 15px
}

.logo-prev {
  left: 0;
  top: 58%
}

.logo-next {
  right: 0;
  top: 58%
}

.newsletter {
  position: relative;
  z-index: 2
}

.news-panel {
    background: linear-gradient(110deg, #004b9a, #00204d);
    border-radius: 16px;
    color: #fff;
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 30px;
    align-items: center;
    padding: 27px 45px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.news-left {
  display: flex;
  align-items: center;
  gap: 22px
}

.news-left>i {
  font-size: 48px;
  color: #63c6ff
}

.news-left h3 {
  font-size: 23px;
  line-height: 1.06;
  font-weight: 950;
  margin: 0 0 5px
}

.news-left p {
  font-size: 13px;
  color: #d9eaff;
  margin: 0
}

.news-form {
  display: flex;
  justify-content: flex-end
}

.news-form input {
  height: 55px;
  width: 430px;
  border: 0;
  border-radius: 999px 0 0 999px;
  padding: 0 24px;
  outline: 0
}

.news-form button {
  height: 55px;
  border: 0;
  border-radius: 0 999px 999px 0;
  background: #0079df;
  color: #fff;
  font-weight: 900;
  padding: 0 30px
}

.footer {
  background: linear-gradient(115deg, #002653, #001734);
  color: #fff
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.45fr .75fr .8fr .72fr 1.15fr;
  gap: 40px;
  padding: 38px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .13)
}

.footer-brand img {
  width: 230px;
  height: 66px;
  object-fit: cover;
  object-position: center;
  /* filter: brightness(0) invert(1); */
  margin-bottom: 12px;
  border-radius: 10px;
}

.footer h4 {
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 17px
}

.footer p {
  font-size: 14px;
  line-height: 1.58;
  color: #dceaff
}

.footer a {
  display: block;
  color: #dceaff;
  font-size: 14px;
  margin-bottom: 9px
}

.foot-social {
  display: flex;
  gap: 10px
}

.foot-social a {
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d5e5fb;
  font-size: 13px;
  padding: 18px 0
}

.footer-bottom a {
  display: inline;
  color: #d5e5fb
}

.toast-msg {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #00275b;
  color: #fff;
  border-radius: 12px;
  padding: 14px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  z-index: 300;
  opacity: 0;
  transform: translateY(20px);
  transition: .3s
}

.toast-msg.show {
  opacity: 1;
  transform: translateY(0)
}

@keyframes softFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@media(max-width:1199px) {
  .site-wrap {
    width: min(100% - 36px, 1060px)
  }

  .hero {
    height: 540px
  }

  .hero-bg {
    background-size: auto 540px;
    background-position: 65% center
  }

  .hero-layout {
    grid-template-columns: 430px 1fr
  }

  .hero h1 {
    font-size: 58px
  }

  .tech-list {
    margin-right: 0
  }

  .productSwiper {
    margin-inline: 50px
  }

  .solution-layout {
    grid-template-columns: 32% 32% 36%
  }

  .feature-layout {
    gap: 18px
  }

  .danger-box,
  .consult-box,
  .ready-box {
    padding: 28px 22px
  }

  .footer-layout {
    gap: 26px
  }
}

@media(max-width:991px) {
  .site-wrap {
    width: calc(100% - 28px)
  }

  .topbar {
    height: auto;
    padding: 8px 0;
    font-size: 11px
  }

  .mainnav {
    height: auto
  }

  .navbar-brand img {
    width: 218px;
    height: 58px
  }

  .mainnav .nav-link {
    padding: 10px 0 !important;
    margin: 0
  }

  .mainnav .nav-link:after {
    display: none !important
  }

  .hero {
    height: auto;
    min-height: 760px
  }

  .hero-bg {
    background-size: auto 440px;
    background-position: center bottom
  }

  .hero:before {
    background: linear-gradient(180deg, #fff 0%, #fff 42%, rgba(255, 255, 255, .15) 100%)
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 42px
  }

  .hero-copy {
    text-align: center
  }

  .hero-features,
  .hero-actions {
    margin-inline: auto;
    justify-content: center
  }

  .tech-list {
    display: none
  }

  .blue-panel {
    padding: 26px 18px
  }

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

  .choose-grid article {
    border-right: 0
  }

  .view-products {
    position: static;
    margin-top: 15px
  }

  .productSwiper {
    margin: 30px 44px 0
  }

  .solution-layout {
    grid-template-columns: 1fr;
    text-align: center
  }

  .solution-copy p {
    margin-inline: auto
  }

  .solution-image img {
    max-width: 480px;
    height: auto
  }

  .solution-list {
    padding: 0;
    max-width: 520px;
    margin: auto;
    text-align: left
  }

  .feature-layout {
    grid-template-columns: 1fr
  }

  .danger-box {
    grid-template-columns: 240px 1fr
  }

  .stat-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }

  .stat-panel article:nth-child(2) {
    border-right: 0
  }

  .news-panel {
    grid-template-columns: 1fr
  }

  .news-form {
    justify-content: flex-start
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center
  }
}

@media(max-width:575px) {
  .site-wrap {
    width: calc(100% - 22px)
  }

  .topbar .site-wrap {
    gap: 8px;
    flex-direction: column
  }

  .socials span {
    display: none
  }

  .hero {
    min-height: 710px
  }

  .hero-bg {
    background-size: auto 330px;
    background-position: center bottom 12px
  }

  .hero h1 {
    font-size: 45px;
    letter-spacing: -1px
  }

  .hero p {
    font-size: 19px
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 14px
  }

  .hero-features div {
    border-right: 0
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px
  }

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

  .blue-panel h2,
  .section-title h2,
  .solution-copy h2 {
    font-size: 25px
  }

  .productSwiper {
    margin-inline: 32px
  }

  .swiper-nav {
    display: grid;
    width: 34px;
    height: 34px
  }

  .solution-list li {
    font-size: 14px
  }

  .danger-box {
    grid-template-columns: 1fr;
    text-align: center
  }

  .danger-img-wrap {
    margin: auto
  }

  .consult-box,
  .ready-box {
    text-align: left
  }

  .stat-panel {
    grid-template-columns: 1fr 1fr;
    padding: 24px
  }

  .stat-panel article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    padding-bottom: 16px
  }

  .stat-panel article:last-child {
    border-bottom: 0;
    padding-bottom: 0
  }

  .logoSwiper {
    margin: 0 36px
  }

  .news-panel {
    padding: 24px 18px
  }

  .news-left {
    align-items: flex-start
  }

  .news-form {
    display: block
  }

  .news-form input,
  .news-form button {
    width: 100%;
    border-radius: 999px;
    margin-bottom: 10px
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .footer-brand img {
    width: 200px
  }

  .topbar p {
    font-size: 11px;
    text-align: center
  }
}

/* Added sections: million reasons, partner logo images, testimonials */
.danger-img-wrap.battle {
  width: 165px;
  height: 235px;
  margin-left: -6px
}

.danger-img-wrap.battle img {
  filter: none;
  mix-blend-mode: screen;
  transform: scale(1.68)
}

.million {
  padding: 14px 0 34px;
  background: linear-gradient(180deg, #fff 0%, #f5fbff 100%);
  position: relative;
  overflow: hidden
}

.million:before {
  content: "";
  position: absolute;
  left: -120px;
  top: 40px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(0, 132, 255, .17), transparent 68%);
  pointer-events: none
}

.million:after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(72, 201, 255, .16), transparent 70%);
  pointer-events: none
}

.million-title {
  margin-bottom: 30px
}

.million-title .mini-tag {
  margin-bottom: 12px
}

.million-title h2 {
  font-size: 42px;
  letter-spacing: -.8px
}

.million-grid {
  display: grid;
  grid-template-columns: 1.25fr .5fr .5fr;
  grid-template-rows: 172px 172px;
  gap: 24px;
  position: relative;
  z-index: 1
}

.million-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(0, 44, 95, .13);
  background: #062652;
  min-height: 172px
}

.million-card-large {
  grid-row: 1/3
}

.million-wide {
  grid-column: 2/4
}

.million-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .95;
  transition: transform .55s ease
}

.million-card:hover .million-bg {
  transform: scale(1.06)
}

.million-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, rgba(0, 29, 70, .76) 100%)
}

.family-bg {
  background: linear-gradient(rgba(255, 255, 255, .04), rgba(0, 0, 0, .1)), url('../images/4.webp') center/cover no-repeat
}

.doctor-bg {
  background: linear-gradient(rgba(255, 255, 255, .04), rgba(0, 0, 0, .1)), url('../images/3.webp') center/cover no-repeat
}

.doctor-bg:before,
.lab-bg:before,
.tech-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, .75) 0 8%, transparent 9%), linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(0, 34, 82, .3))
}

.lab-bg {
  background: linear-gradient(rgba(255, 255, 255, .04), rgba(0, 0, 0, .1)), url('../images/2.webp') center/cover no-repeat
}

.tech-bg {
  background: linear-gradient(rgba(255, 255, 255, .04), rgba(0, 0, 0, .1)), url('../images/1.webp') center/cover no-repeat
}

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

.million-content span {
  display: inline-flex;
  background: #fff;
  color: #06335f;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 10px
}

.million-content strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1px
}

.million-card-large .million-content strong {
  font-size: 35px
}

.million-content h3 {
  font-size: 18px;
  font-weight: 950;
  margin: 8px 0 0;
  color: #fff
}

.partner-logos .swiper-slide {
  background: #fff;
  border: 1px solid #e6eef8;
  border-radius: 14px;
  min-height: 72px;
  padding: 12px 18px;
  border-right: 1px solid #e6eef8 !important;
  box-shadow: 0 10px 26px rgba(0, 50, 110, .06)
}

.partner-logos .swiper-slide img {
  max-width: 161px;
  max-height: 66px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(1) contrast(1.05); */
  opacity: .82;
  transition: .3s
}

.partner-logos .swiper-slide:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px)
}

.testimonials {
  padding: 6px 0 34px;
  background: #fff;
  position: relative
}

.testimonialSwiper {
  margin: 32px 54px 0;
  padding: 0 0 18px
}

.testimonial-card {
  height: 230px;
  background: #fff;
  border: 1px solid #e5eef8;
  border-radius: 18px;
  padding: 27px 25px;
  box-shadow: 0 16px 36px rgba(0, 40, 100, .08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .35s
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px rgba(0, 75, 150, .14)
}

.testimonial-card>i {
  font-size: 42px;
  color: #0075dc;
  line-height: 1
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.55;
  color: #24436f;
  margin: 0;
  font-weight: 650
}

.testimonial-card strong {
  display: block;
  color: #07295a;
  font-weight: 950
}

.testimonial-card span {
  font-size: 13px;
  color: #55739a;
  font-weight: 700
}

.stars {
  color: #0085ec;
  font-size: 15px;
  letter-spacing: 2px
}

.testi-prev {
  left: 0;
  top: 57%
}

.testi-next {
  right: 0;
  top: 57%
}

@media(max-width:991px) {
  .million-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto
  }

  .million-card-large,
  .million-wide {
    grid-column: auto;
    grid-row: auto
  }

  .million-card {
    min-height: 230px
  }

  .million-card-large {
    grid-column: 1/3
  }

  .testimonialSwiper {
    margin-inline: 44px
  }

  .partner-logos .swiper-slide img {
    max-width: 115px
  }

  .danger-img-wrap.battle {
    margin: auto
  }
}

@media(max-width:575px) {
  .million {
    padding-top: 4px
  }

  .million-title h2 {
    font-size: 31px
  }

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

  .million-card-large,
  .million-wide {
    grid-column: auto
  }

  .million-card {
    min-height: 215px;
    border-radius: 18px
  }

  .million-content {
    left: 20px;
    bottom: 20px
  }

  .million-content strong,
  .million-card-large .million-content strong {
    font-size: 39px
  }

  .testimonialSwiper {
    margin-inline: 32px
  }

  .testimonial-card {
    height: auto;
    min-height: 245px
  }

  .partner-logos .swiper-slide {
    min-height: 64px;
    padding: 10px
  }

  .partner-logos .swiper-slide img {
    max-width: 105px;
    max-height: 40px
  }
}

/* Final PHP version fixes: precise header alignment, CTA button strip, counters, floating actions, responsiveness */
.mainnav>.site-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
}

.mainnav .navbar-collapse {
  flex-grow: 1;
  align-items: center;
  justify-content: flex-end;
}

.navbar-brand {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.navbar-brand img {
  display: block;
  background: #fff;
  border-radius: 0;
}

.mainnav .navbar-toggler {
  border: 0;
  box-shadow: none;
  margin-left: auto;
}

.mainnav .navbar-toggler:focus {
  box-shadow: none;
}

.topbar .site-wrap {
  min-height: 42px;
}

.topbar p {
  white-space: nowrap;
}

.socials {
  white-space: nowrap;
}

.socials a,
.foot-social a {
  flex: 0 0 auto;
}

/* Keep desktop header clean and aligned like the approved mockup. */
@media(min-width:992px) {
  .mainnav {
    height: 80px;
    display: flex;
    align-items: center;
  }

  .mainnav .navbar-nav {
    height: 104px;
    display: flex;
    align-items: center;
  }

  .mainnav .nav-link {
    display: flex;
    align-items: center;
    height: 104px;
    padding: 0 !important;
  }

  .mainnav .nav-link.active:after,
  .mainnav .nav-link:hover:after {
    bottom: 30px;
  }

  .mainnav .pill-btn {
    white-space: nowrap;
    min-width: 188px;
    text-align: center;
  }
}

/* CTA strip replaces subscription form with buttons. */
.cta-strip {
  padding: 0 0 0;
  background: #fff;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cta-white,
.cta-outline {
  border-radius: 999px;
  font-weight: 950;
  padding: 14px 30px;
  transition: .35s;
  white-space: nowrap;
}

.cta-white {
  background: #fff;
  color: #0067c8 !important;
  box-shadow: 0 16px 28px rgba(0, 0, 0, .12);
}

.cta-white:hover {
  transform: translateY(-3px);
  background: #f1f9ff;
}

.cta-outline {
  border: 2px solid rgba(255, 255, 255, .8);
  color: #fff !important;
  background: rgba(255, 255, 255, .08);
}

.cta-outline:hover {
  background: #fff;
  color: #0067c8 !important;
  transform: translateY(-3px);
}

/* Floating contact buttons and back-to-top. */
.float-actions-left {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  box-shadow: 0 16px 32px rgba(0, 27, 76, .24);
  position: relative;
  overflow: hidden;
  transition: .35s;
}

.float-btn i {
  font-size: 25px;
  position: relative;
  z-index: 2;
}

.float-btn span {
  position: absolute;
  left: 64px;
  background: #fff;
  color: #073160;
  border: 1px solid #dbeafa;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(0, 40, 100, .14);
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
  transition: .3s;
  white-space: nowrap;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.04);
}

.float-btn:hover span {
  opacity: 1;
  transform: translateX(0);
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #079b49);
}

.float-btn.call {
  background: linear-gradient(135deg, #0099ff, #004fba);
}

.float-btn:after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, .35);
  animation: pulseRing 1.9s infinite;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 30px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  z-index: 999;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #008cff, #003c91);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 62, 143, .3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: .35s;
}

.back-to-top i {
  font-size: 24px;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

@keyframes pulseRing {
  0% {
    opacity: .65;
    transform: scale(.86)
  }

  70% {
    opacity: 0;
    transform: scale(1.22)
  }

  100% {
    opacity: 0;
    transform: scale(1.22)
  }
}

/* Better spacing and alignment for newly added sections. */
.stats {
  padding: 14px 0 28px;
}

.million {
  padding: 32px 0 44px;
}

.trusted {
  padding-top: 30px;
}

.testimonials {
  padding: 28px 0 40px;
}

.news-panel {
  margin-top: 0;
}

.stat-panel article strong {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-variant-numeric: tabular-nums;
}

.stat-panel article strong .counter {
  display: inline-block;
  min-width: 1.15em;
}

/* Mobile/tablet fixes. */
@media(max-width:1199px) {
  .mainnav .nav-link {
    margin: 0 8px;
    font-size: 13px;
  }

  .mainnav .pill-btn {
    padding: 12px 20px;
  }
}

@media(max-width:991px) {
  .mainnav>.site-wrap {
    min-height: 78px;
  }

  .mainnav .navbar-collapse {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 82px;
    background: #fff;
    border: 1px solid #e6eef8;
    border-radius: 18px;
    padding: 16px 20px;
    box-shadow: 0 20px 48px rgba(0, 30, 80, .14);
    z-index: 1000;
  }

  .mainnav .navbar-nav {
    align-items: stretch !important;
  }

  .mainnav .nav-link {
    height: auto !important;
    padding: 11px 0 !important;
    border-bottom: 1px solid #edf4fb;
  }

  .mainnav .nav-item:last-child .btn {
    margin-top: 14px;
    width: 100%;
  }

  .topbar .site-wrap {
    display: flex !important;
  }

  .topbar p {
    white-space: normal;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .float-actions-left {
    left: 12px;
    bottom: 76px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .float-btn span {
    display: none;
  }

  .back-to-top {
    right: 14px;
    bottom: 24px;
    width: 48px;
    height: 48px;
  }
}

@media(max-width:575px) {
  .navbar-brand img {
    width: 198px;
    height: 52px;
  }

  .mainnav>.site-wrap {
    min-height: 45px;
  }

  .mainnav .navbar-collapse {
    top: 76px;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cta-white,
  .cta-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .float-actions-left {
    bottom: 84px;
  }
}

/* Request update: mobile hero fix, favicon-ready header alignment, powered-by link, stronger floating animations */
.mainnav {
  background: #fff;
  isolation: isolate;
}

.mainnav .site-wrap {
  position: relative;
}

.navbar-brand {
  z-index: 2;
}

.navbar-brand img {
  max-width: 100%;
}

.powered-link {
  margin-left: 12px;
  font-weight: 900;
  color: #6ec7ff !important;
  white-space: nowrap;
}

.powered-link:hover {
  color: #fff !important;
  text-decoration: underline;
}

.float-actions-left {
  animation: floatStack 3.8s ease-in-out infinite;
}

.float-btn.whatsapp {
  animation: contactPulse 2.4s ease-in-out infinite;
}

.float-btn.call {
  animation: contactPulse 2.4s ease-in-out infinite .75s;
}

.float-btn:hover i {
  animation: wiggleIcon .55s ease-in-out;
}

.float-btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .42) 48%, transparent 100%);
  transform: translateX(-140%);
  animation: shineBtn 3.2s ease-in-out infinite;
}

@keyframes floatStack {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-7px)
  }
}

@keyframes contactPulse {

  0%,
  100% {
    box-shadow: 0 16px 32px rgba(0, 27, 76, .24)
  }

  50% {
    box-shadow: 0 18px 42px rgba(0, 126, 255, .38);
    transform: scale(1.04)
  }
}

@keyframes wiggleIcon {

  0%,
  100% {
    transform: rotate(0)
  }

  25% {
    transform: rotate(-13deg)
  }

  75% {
    transform: rotate(13deg)
  }
}

@keyframes shineBtn {

  0%,
  55% {
    transform: translateX(-140%)
  }

  78%,
  100% {
    transform: translateX(140%)
  }
}

@media(max-width:991px) {
  .mainnav {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 26px rgba(1, 33, 82, .09)
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 34px 0 360px;
    background: linear-gradient(180deg, #fff 0%, #f4fbff 100%)
  }

  .hero-bg {
    background-size: auto 345px;
    background-position: center bottom 8px;
    opacity: 1;
    animation: softFloat 7s ease-in-out infinite;
  }

  .hero:before {
    background: linear-gradient(180deg, #fff 0%, #fff 54%, rgba(255, 255, 255, .26) 80%, rgba(255, 255, 255, 0) 100%)
  }

  .hero-layout {
    height: auto;
    padding-top: 0;
    display: block;
  }

  .hero-copy {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    font-size: clamp(40px, 8vw, 58px);
    line-height: 1.02;
    letter-spacing: -1.2px;
    white-space: normal;
    overflow: visible;
    word-break: normal;
  }

  .hero p {
    font-size: clamp(18px, 3.2vw, 22px);
  }

  .hero-features {
    width: min(100%, 520px);
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar {
    position: relative;
    z-index: 1001;
  }
}

@media(max-width:575px) {
  .topbar {
    padding: 7px 0;
  }

  .mainnav .site-wrap {
    width: calc(100% - 22px)
  }

  .navbar-brand img {
    width: 186px !important;
    height: 50px !important;
    object-fit: contain;
  }

  .hero {
    padding: 28px 0 300px;
  }

  .hero-bg {
    background-size: auto 285px;
    background-position: right bottom 8px;
  }

  .hero .mini-tag {
    font-size: 11px;
    padding: 7px 12px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(33px, 10.4vw, 39px);
    letter-spacing: -.6px;
    line-height: 1.03;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.28;
    margin-bottom: 18px;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 12px 8px;
    border-radius: 14px;
    width: min(100%, 360px);
  }

  .hero-features div {
    padding: 10px 4px;
    border-right: 0;
    border-bottom: 1px solid #e5eef8;
  }

  .hero-features div:nth-child(3),
  .hero-features div:nth-child(4) {
    border-bottom: 0;
  }

  .hero-features i {
    font-size: 27px;
    margin-bottom: 6px;
  }

  .hero-features span {
    font-size: 11.5px;
  }

  .hero-actions .btn {
    width: max-content;
    justify-content: center;
    display: inline-flex;
    align-items: center;
  }

  .choose {
    padding-top: 18px;
  }

  .blue-panel {
    border-radius: 18px;
  }

  .footer-bottom {
    font-size: 12px;
    line-height: 1.6;
  }

  .footer-bottom span:first-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
  }

  .powered-link {
    margin-left: 0;
  }

  .float-actions-left {
    left: 10px;
    bottom: 20px;
    gap: 10px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .stat-panel strong {
    display: block;
    font-size: 27px;
    line-height: 1;
    font-weight: 950;
  }
}

@media(max-width:380px) {
  .hero h1 {
    font-size: 32px;
    letter-spacing: -.4px;
  }

  .hero {
    padding-bottom: 280px;
  }

  .hero-bg {
    background-size: auto 242px;
  }

  .site-wrap {
    width: calc(100% - 18px);
  }
}

.news-panel:after {

  display: none;
}

/*@media (max-width: 575px) {*/
/*       .hero-bg {*/
/*               background-size: auto 887px;*/
/*        background-position: 94% 10%;*/
/*    }*/
/*}*/

@media (min-width: 992px) {
  .mainnav .nav-link {
    display: flex;
    align-items: center;
    height: 104px;
    padding: 0px 8px !important;
  }

  .counter {
    font-size: 33px !important;
  }
}

html,
body {
   overflow-x: hidden !important; 
  max-width: 100%;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


@media (max-width: 768px) {
  .about-floating-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 15px;
    max-width: 100%;
  }

  .footer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  /* Brand section full width */
  .footer-layout .footer-brand {
    grid-column: 1 / -1;
    /*text-align: center;*/
  }

  .hero-features {
    display: none;
  }
}


.overflow-safe-section {
  overflow-x: hidden;
  width: 100%;
}






/* Inner product and testimonials pages - added without changing approved home layout */
.inner-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5fbff 0%, #fff 48%, #eaf7ff 100%);
  padding: 78px 0;
  border-bottom: 1px solid var(--line)
}

.inner-hero:before {
  content: "";
  position: absolute;
  right: -160px;
  top: -160px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(0, 118, 219, .08)
}

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

.inner-hero-copy h1,
.inner-hero-simple h1 {
  font-size: 48px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -1.8px;
  color: var(--navy);
  margin: 0 0 17px
}

.inner-hero-copy p,
.inner-hero-simple p {
  font-size: 18px;
  line-height: 1.65;
  color: #315072;
  max-width: 720px;
  margin: 0 0 25px
}

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

.inner-product-image {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 28px;
  min-height: 385px;
  display: grid;
  place-items: center
}

.inner-product-image img {
  width: 100%;
  max-height: 420px;
  object-fit: contain
}

.inner-hero-simple {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin-inline: auto
}

.product-detail-section,
.spec-section,
.process-section,
.all-products-section,
.testimonial-page-section {
  padding: 80px 0
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 28px
}

.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 34px
}

.detail-card h2 {
  font-weight: 950;
  color: var(--navy);
  font-size: 30px;
  letter-spacing: -.6px
}

.detail-card p {
  color: #315072;
  line-height: 1.75;
  margin: 0
}

.product-highlight-card {
  background: linear-gradient(135deg, var(--navy), #006cd0);
  color: #fff
}

.product-highlight-card i {
  font-size: 42px
}

.product-highlight-card h3 {
  font-weight: 900;
  margin: 16px 0 10px
}

.product-highlight-card p {
  color: rgba(255, 255, 255, .86)
}

.spec-section {
  background: #f6fbff
}

.spec-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 42px;
  align-items: start
}

.spec-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden
}

.spec-table {
  width: 100%;
  border-collapse: collapse
}

.spec-table th,
.spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #eaf1f8;
  font-size: 14px;
  vertical-align: top
}

.spec-table th {
  width: 39%;
  background: #f2f9ff;
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase
}

.spec-table td {
  color: #24486e;
  font-weight: 650
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

.process-box,
.feature-box {
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 34px;
  background: #fff
}

.process-box h2,
.feature-box h2 {
  font-weight: 950;
  color: var(--navy);
  font-size: 30px;
  margin-bottom: 20px
}

.process-box ol {
  padding-left: 20px;
  margin: 0
}

.process-box li {
  margin-bottom: 13px;
  color: #315072;
  line-height: 1.65
}

.feature-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px
}

.feature-box li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #24486e;
  font-weight: 700
}

.feature-box i {
  color: #0087f5;
  margin-top: 2px
}

.product-cta {
  padding-top: 0
}

.all-product-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: .35s
}

.all-product-card:hover {
  transform: translateY(-6px)
}

.all-product-card img {
  width: 100%;
  height: 245px;
  object-fit: contain;
  background: #f6fbff;
  padding: 18px
}

.all-product-card div {
  padding: 24px
}

.all-product-card h3 {
  font-size: 21px;
  font-weight: 950;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 10px
}

.all-product-card p {
  color: #315072;
  line-height: 1.55;
  min-height: 52px
}

.all-product-card a {
  font-weight: 900;
  color: var(--blue)
}

.testimonial-page-card {
  height: 100%;
  min-height: 275px
}

.testimonial-page-section {
  background: #f6fbff
}

@media(max-width:991px) {

  .inner-hero-layout,
  .product-detail-grid,
  .spec-layout,
  .process-layout {
    grid-template-columns: 1fr
  }

  .inner-hero-copy h1,
  .inner-hero-simple h1 {
    font-size: 36px
  }

  .product-detail-section,
  .spec-section,
  .process-section,
  .all-products-section,
  .testimonial-page-section {
    padding: 55px 0
  }

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

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%
  }

  .spec-table th {
    border-bottom: 0
  }

  .spec-table td {
    padding-top: 0
  }
}

@media(max-width:575px) {
  .inner-hero {
    padding: 56px 0
  }

  .inner-actions .btn {
    width: 100%;
    justify-content: center
  }

  .inner-hero-copy h1,
  .inner-hero-simple h1 {
    font-size: 31px
  }

  .detail-card,
  .process-box,
  .feature-box {
    padding: 25px
  }

  .all-product-card img {
    height: 210px
  }
}


/* Header dropdowns and new inner pages */
.mainnav .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle
}

.premium-dropdown {
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(0, 42, 90, .14);
  border-radius: 18px;
  padding: 10px;
  min-width: 310px
}

.premium-dropdown .dropdown-item {
  border-radius: 12px;
  padding: 7px 13px;
  font-weight: 750;
  color: #24486e;
  white-space: normal
}

.premium-dropdown .dropdown-item:hover,
.premium-dropdown .dropdown-main {
  background: #eff8ff;
  color: var(--blue)
}

@media(min-width:992px) {
  .hover-dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0
  }

  .hover-dropdown .dropdown-menu {
    top: 88%;
  }

  .mainnav .dropdown:hover .nav-link {
    color: var(--blue)
  }
}

.page-section {
  padding: 80px 0
}

.soft-bg {
  background: #f6fbff
}

.content-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center
}

.content-copy h2,
.contact-details h2 {
  font-size: 42px;
  line-height: 1.08;
  font-weight: 950;
  color: var(--navy);
  letter-spacing: -1.2px;
  margin: 12px 0 18px
}

.content-copy p,
.contact-details p {
  color: #315072;
  line-height: 1.75;
  font-size: 17px
}

.content-card {
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #fff
}

.blue-info-card {
  background: linear-gradient(135deg, var(--navy), #0078dd);
  color: #fff
}

.blue-info-card i {
  font-size: 25px
}

.blue-info-card h3 {
  font-weight: 950;
  margin: 18px 0 12px
}

.blue-info-card p {
  color: rgba(255, 255, 255, .86);
  line-height: 1.7
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px
}

.mini-stats div {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 42, 90, .07);
  border-radius: 18px;
  padding: 18px
}

.mini-stats strong {
  display: block;
  color: var(--blue);
  font-size: 26px;
  font-weight: 950
}

.mini-stats span {
  color: #315072;
  font-weight: 700;
  font-size: 13px
}

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

.service-grid article,
.service-list-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px;
  transition: .35s
}

.service-grid article:hover,
.service-list-card:hover {
  transform: translateY(-5px)
}

.service-grid i,
.service-list-card i {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #eef8ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 18px
}

.service-grid h3,
.service-list-card h3 {
  font-weight: 950;
  color: var(--navy);
  font-size: 21px
}

.service-grid p,
.service-list-card p {
  color: #315072;
  line-height: 1.6
}

.service-list-card a {
  font-weight: 900;
  color: var(--blue)
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px
}

.clean-list li {
  display: flex;
  gap: 11px;
  color: #24486e;
  font-weight: 750;
  line-height: 1.55
}

.clean-list i {
  color: var(--blue);
  margin-top: 3px
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 34px;
  align-items: start
}

.contact-info-list {
  display: grid;
  gap: 16px;
  margin-top: 28px
}

.contact-info-list div {
  display: flex;
  gap: 15px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 42, 90, .07);
  border-radius: 18px;
  padding: 18px
}

.contact-info-list i {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 14px;
  background: #eef8ff;
  color: var(--blue);
  display: grid;
  place-items: center
}

.contact-info-list strong {
  display: block;
  color: var(--navy);
  font-weight: 950;
  margin-bottom: 4px
}

.contact-info-list span,
.contact-info-list a {
  color: #315072;
  font-weight: 650;
  text-decoration: none
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 32px
}

.contact-form-card h3 {
  font-weight: 950;
  color: var(--navy);
  margin-bottom: 18px
}

.contact-form-card label {
  display: block;
  margin-bottom: 13px
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
  width: 100%;
  border: 1px solid #dbe9f5;
  border-radius: 14px;
  padding: 14px 16px;
  color: #24486e;
  outline: none;
  background: #fbfdff
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 118, 219, .08)
}

.map-section {
  padding: 0 0 80px
}

.map-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block
}

.thank-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 50px;
  max-width: 760px;
  margin: auto
}

.thank-card i {
  font-size: 74px;
  color: var(--blue)
}

.thank-card h2 {
  font-weight: 950;
  color: var(--navy)
}

.cta-card {
  border-radius: 30px;
  background: linear-gradient(135deg, var(--navy), #0078dd);
  color: #fff;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px
}

.cta-card h2 {
  font-weight: 950
}

.cta-card p {
  color: rgba(255, 255, 255, .86);
  margin: 0
}

@media(max-width:991px) {

  .content-split,
  .contact-layout {
    grid-template-columns: 1fr
  }

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

  .content-copy h2,
  .contact-details h2 {
    font-size: 34px
  }

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

  .premium-dropdown {
    box-shadow: none;
    border-radius: 12px;
    min-width: 100%
  }

  .mainnav .dropdown-toggle {
    justify-content: space-between
  }
}

@media(max-width:575px) {
  .page-section {
    padding: 55px 0
  }

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

  .contact-form-card,
  .content-card,
  .cta-card {
    padding: 25px
  }

  .cta-card {
    display: block
  }

  .cta-card .btn {
    margin-top: 18px;
    width: 100%;
    justify-content: center
  }

  .map-card iframe {
    height: 330px
  }
}


/* Reworked inner pages - home content remains untouched */
@media (min-width: 992px) {
  .hover-dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0
  }

  .hover-dropdown:hover>.nav-link {
    color: var(--blue)
  }
}

.image-title-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: #fff;
  border-bottom: 0
}

.image-title-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 24, 54, .90), rgba(0, 84, 157, .74), rgba(0, 118, 219, .26));
  z-index: -1;
  display: none;
}

.image-title-section:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -160px;
    width: 100%;
    height:695px;
    /* border-radius: 50%; */
    background: rgba(255, 255, 255, .10);
    z-index: -1;
}

.image-title-section .mini-tag {
  background: rgba(255, 255, 255, .16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .24)
}

.image-title-section .inner-hero-simple h1,
.image-title-section .inner-hero-simple p {
  color: #fff
}

.about-title-bg {
  background-image: url('../images/banner.png')
}

.contact-title-bg {
  background-image: url('../images/banner.png')
}

.testimonials-title-bg {
  background-image: url('../images/banner.png')
}

.services-title-bg {
  background-image: url('../images/banner.png')
}

.product-title-bg {
  background-image: url('../images/banner.png')
}

.about-modern-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center
}

.about-copy h2 {
  font-size: 42px;
  line-height: 1.08;
  font-weight: 950;
  color: var(--navy);
  letter-spacing: -1.2px
}

.about-copy p {
  color: #315072;
  line-height: 1.75;
  font-size: 17px
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px
}

.about-points span {
  display: flex;
  gap: 9px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  font-weight: 800;
  color: #24486e;
  box-shadow: 0 10px 28px rgba(0, 42, 90, .06)
}

.about-points i {
  color: var(--blue)
}

.about-image-stack {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  min-height: 430px
}

.about-image-stack img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover
}

.about-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 22px;
  padding: 18px 22px;
  box-shadow: 0 18px 40px rgba(0, 42, 90, .18)
}

.about-badge strong {
  display: block;
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
  font-weight: 950
}

.about-badge span {
  color: #24486e;
  font-weight: 850
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px
}

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

.mv-image {
  height: 250px;
  overflow: hidden
}

.mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s
}

.mission-card:hover .mv-image img {
  transform: scale(1.06)
}

.mv-content {
  padding: 30px
}

.mv-content i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #eef8ff;
  color: var(--blue);
  font-size: 28px;
  margin-bottom: 18px
}

.mv-content h3 {
  font-size: 25px;
  font-weight: 950;
  color: var(--navy)
}

.mv-content p {
  color: #315072;
  line-height: 1.7;
  margin: 0
}

.contact-redesign-section {
  background: linear-gradient(180deg, #fff, #f5fbff)
}

.contact-redesign-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
  align-items: start
}

.contact-left-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 38px;
  box-shadow: var(--shadow)
}

.contact-left-panel h2 {
  font-size: 40px;
  line-height: 1.08;
  font-weight: 950;
  color: var(--navy);
  letter-spacing: -1px
}

.contact-left-panel p {
  color: #315072;
  line-height: 1.7
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 26px 0
}

.quick-contact-grid a,
.quick-contact-grid div {
  display: block;
  text-decoration: none;
  background: #f7fbff;
  border: 1px solid #dfeef8;
  border-radius: 20px;
  padding: 20px
}

.quick-contact-grid i,
.address-card i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #eaf7ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 23px;
  margin-bottom: 14px
}

.quick-contact-grid strong,
.address-card strong {
  display: block;
  color: var(--navy);
  font-weight: 950;
  margin-bottom: 4px
}

.quick-contact-grid span,
.address-card p {
  color: #315072;
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
  word-break: break-word
}

.address-card {
  display: flex;
  gap: 18px;
  background: linear-gradient(135deg, var(--navy), #0078dd);
  border-radius: 22px;
  padding: 22px;
  color: #fff
}

.address-card i {
  background: rgba(255, 255, 255, .16);
  color: #fff;
  min-width: 48px
}

.address-card strong,
.address-card p {
  color: #fff
}

.modern-contact-form {
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #f9fcff)
}

.modern-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px
}

.testimonial-redesign-section {
  padding: 80px 0;
  background: #f5fbff
}

.testimonial-feature {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 30px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 36px;
  box-shadow: var(--shadow);
  margin-bottom: 32px
}

.testimonial-feature h2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 950;
  color: var(--navy);
  letter-spacing: -1px
}

.testimonial-feature p {
  color: #315072;
  line-height: 1.7
}

.rating-box {
  text-align: center;
  background: linear-gradient(135deg, var(--navy), #0078dd);
  color: #fff;
  border-radius: 26px;
  padding: 28px
}

.rating-box strong {
  display: block;
  font-size: 56px;
  line-height: 1;
  font-weight: 950
}

.rating-box span {
  display: block;
  margin: 8px 0;
  font-weight: 800
}

.rating-box div {
  letter-spacing: 4px;
  color: #ffd766
}

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

.review-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(0, 42, 90, .07);
  display: flex;
  flex-direction: column;
  gap: 18px
}

.review-tile.large {
  grid-row: span 2
}

.review-tile>i {
  font-size: 36px;
  color: var(--blue)
}

.review-tile p {
  color: #24486e;
  line-height: 1.75;
  font-size: 16px;
  margin: 0
}

.review-person {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto
}

.review-person span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eaf7ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 950
}

.review-person strong {
  display: block;
  color: var(--navy)
}

.review-person small {
  color: #647b91;
  font-weight: 700
}

.featured-service-card {
  min-height: 310px
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 30px;
  align-items: start
}

.service-detail-card>i {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #eef8ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 32px;
  margin-bottom: 18px
}

.service-detail-card h2 {
  font-weight: 950;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.08
}

.service-detail-card p {
  color: #315072;
  line-height: 1.75
}

.product-hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 82px 0
}

.product-hero-v2-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center
}

.product-hero-v2-copy h1 {
  font-size: 48px;
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -1.6px;
  color: #fff;
  margin: 0 0 18px
}

.product-hero-v2-copy p {
  font-size: 19px;
  color: rgba(255, 255, 255, .90);
  line-height: 1.65;
  margin-bottom: 25px
}

.product-hero-v2-card {
  position: relative;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(0, 25, 62, .28);
  padding: 34px;
  min-height: 420px;
  display: grid;
  place-items: center
}

.product-hero-v2-card img {
  max-width: 100%;
  max-height: 410px;
  object-fit: contain
}

.product-card-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 14px 17px;
  box-shadow: 0 14px 35px rgba(0, 42, 90, .15);
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  color: var(--navy)
}

.product-card-label i {
  color: var(--blue)
}

.product-layout-v2-section {
  padding: 70px 0
}

.product-layout-v2 {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px
}

.product-overview-v2,
.product-side-v2,
.working-card,
.benefits-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 34px
}

.product-overview-v2 h2,
.working-card h2,
.benefits-card h2 {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 950;
  color: var(--navy);
  letter-spacing: -.7px
}

.product-overview-v2 p,
.product-side-v2 p {
  color: #315072;
  line-height: 1.75;
  font-size: 17px
}

.overview-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px
}

.overview-chips span {
  background: #eef8ff;
  color: #24486e;
  border-radius: 19px;
  padding: 10px 14px;
  font-weight: 850;
  
}

.overview-chips i {
  color: var(--blue);
  margin-right: 6px
}

.product-side-v2 {
  background: linear-gradient(135deg, var(--navy), #0078dd);
  color: #fff;
  align-self: start
}

.product-side-v2 h3 {
  font-weight: 950
}

.product-side-v2 p {
  color: rgba(255, 255, 255, .86)
}

.product-side-v2 .pill-btn {
  background: #fff;
  color: var(--blue)
}

.product-spec-v2-section {
  padding: 75px 0;
  background: #f6fbff
}

.product-spec-v2-grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 40px;
  align-items: start
}

.product-spec-card {
  border-radius: 30px
}

.product-working-v2-section {
  padding: 75px 0
}

.working-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

.working-card ol {
  margin: 22px 0 0;
  padding-left: 22px;
  color: #24486e;
  line-height: 1.7;
  font-weight: 600
}

.working-card li {
  margin-bottom: 12px
}

.benefits-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 13px
}

.benefits-card li {
  display: flex;
  gap: 11px;
  color: #24486e;
  font-weight: 600;
  line-height: 1.55
}

.benefits-card i {
  color: var(--blue);
  margin-top: 2px
}

@media(max-width:991px) {

  .about-modern-grid,
  .mission-vision-grid,
  .contact-redesign-grid,
  .testimonial-feature,
  .testimonial-masonry,
  .service-detail-layout,
  .product-hero-v2-grid,
  .product-layout-v2,
  .product-spec-v2-grid,
  .working-feature-grid {
    grid-template-columns: 1fr
  }

  .product-hero-v2-copy h1 {
    font-size: 38px
  }

  .about-copy h2,
  .contact-left-panel h2,
  .testimonial-feature h2 {
    font-size: 32px
  }

  .quick-contact-grid {
    grid-template-columns: 1fr
  }

  .testimonial-masonry .review-tile.large {
    grid-row: auto
  }

  .product-hero-v2-card {
    min-height: auto
  }

  .product-layout-v2 {
    gap: 20px
  }
}

@media(max-width:575px) {
  .product-hero-v2 {
    padding: 58px 0
  }

  .product-hero-v2-copy h1 {
    font-size: 33px
  }

  .product-hero-v2-card,
  .product-overview-v2,
  .product-side-v2,
  .working-card,
  .benefits-card,
  .contact-left-panel,
  .testimonial-feature {
    padding: 24px
  }

  .mission-vision-grid {
    gap: 18px
  }

  .modern-contact-form .form-row {
    grid-template-columns: 1fr
  }

  .about-points {
    grid-template-columns: 1fr
  }
}


/* Final compact inner-page refinements - home page kept unchanged */
body:not(.home) .page-section {
  padding: 54px 0;
}

.inner-hero.image-title-section {
  padding: 54px 0 !important;
  min-height: unset;
}

.image-title-section:before {
  background: linear-gradient(90deg, rgba(1, 17, 42, .86), rgba(0, 72, 145, .78), rgba(0, 0, 0, .42)) !important;
  z-index: -1;
}

.image-title-section .inner-hero-simple {
  max-width: 880px;
}

.image-title-section .inner-hero-simple h1 {
  font-size: clamp(30px, 4vw, 46px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.8px !important;
  margin-bottom: 12px !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .35);
}

.image-title-section .inner-hero-simple p {
  font-size: clamp(14px, 1.4vw, 17px) !important;
  line-height: 1.55 !important;
  max-width: 760px !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .38);
}

.mini-tag {
  font-size: 12px !important;
  padding: 7px 14px !important;
}

.section-title {
  margin-bottom: 26px !important;
}

.section-title h2,
.about-copy h2,
.contact-left-panel h2,
.testimonial-feature h2,
.service-detail-card h2,
.product-overview-v2 h2,
.working-card h2,
.benefits-card h2 {
  font-size: clamp(26px, 3vw, 30px) !important;
  line-height: 1.14 !important;
  letter-spacing: -.6px !important;
}

.section-title p,
.about-copy p,
.contact-left-panel p,
.testimonial-feature p,
.service-detail-card p,
.product-overview-v2 p,
.product-side-v2 p {
  font-size: 15.5px !important;
  line-height: 1.62 !important;
}

/* Compact about page */
.about-modern-grid {
  gap: 28px !important;
  align-items: center;
}

.about-image-stack {
  min-height: 330px !important;
  border-radius: 24px !important;
}

.about-image-stack img {
  min-height: 330px !important;
}

.about-badge {
  padding: 13px 16px !important;
  border-radius: 16px !important;
  left: 18px !important;
  bottom: 18px !important;
}

.about-badge strong {
  font-size: 25px !important;
}

.about-points {
  gap: 10px !important;
  margin-top: 16px !important;
}

.about-points span {
  padding: 11px 12px !important;
  border-radius: 13px !important;
  font-size: 14px !important;
}

.mission-vision-grid {
  gap: 20px !important;
}

.mission-card {
  border-radius: 22px !important;
}

.mv-image {
  height: 178px !important;
}

.mv-content {
  padding: 20px !important;
}

.mv-content i {
  width: 46px !important;
  height: 46px !important;
  border-radius: 14px !important;
  font-size: 22px !important;
  margin-bottom: 12px !important;
}

.mv-content h3 {
  font-size: 21px !important;
  margin-bottom: 8px !important;
}

.mv-content p {
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.service-grid article {
  padding: 24px !important;
  border-radius: 20px !important;
}

.service-grid article h3 {
  font-size: 20px !important;
}

.service-grid article p {
  font-size: 14.5px !important;
  line-height: 1.55 !important;
}

/* Compact service pages and two added sections */
.service-detail-layout {
  grid-template-columns: 1fr 340px !important;
  gap: 22px !important;
}

.content-card,
.service-detail-card,
.blue-info-card {
  border-radius: 22px !important;
  padding: 26px !important;
}

.service-detail-card>i {
  width: 52px !important;
  height: 52px !important;
  font-size: 25px !important;
  border-radius: 16px !important;
  margin-bottom: 12px !important;
}

.clean-list li {
  font-size: 14.5px !important;
  line-height: 1.55 !important;
  margin-bottom: 9px !important;
}

.service-extra-compact {
  padding-top: 0 !important;
}

.service-two-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.compact-service-box i {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #eef8ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 12px;
}

.compact-service-box h3 {
  font-size: 21px;
  font-weight: 950;
  color: var(--navy);
  margin-bottom: 8px;
}

.compact-service-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #315072;
  margin: 0;
}

/* Contact page compact redesign */
.contact-redesign-grid {
  grid-template-columns: 1fr .9fr !important;
  gap: 24px !important;
}

.contact-left-panel {
  padding: 28px !important;
  border-radius: 24px !important;
}

.quick-contact-grid {
  gap: 12px !important;
  margin: 18px 0 !important;
}

.quick-contact-grid a,
.quick-contact-grid div {
  padding: 15px !important;
  border-radius: 16px !important;
}

.quick-contact-grid i,
.address-card i {
  width: 42px !important;
  height: 42px !important;
  border-radius: 13px !important;
  font-size: 20px !important;
  margin-bottom: 10px !important;
}

.address-card {
  padding: 18px !important;
  border-radius: 18px !important;
}

.modern-contact-form {
  padding: 26px !important;
  border-radius: 24px !important;
}

.form-control,
.form-select {
  min-height: 48px !important;
  font-size: 14px !important;
}

textarea.form-control {
  min-height: 110px !important;
}

/* Testimonials alignment fix */
.testimonial-redesign-section {
  padding: 54px 0 !important;
}

.testimonial-feature {
  grid-template-columns: 1fr 210px !important;
  gap: 20px !important;
  padding: 26px !important;
  border-radius: 24px !important;
  margin-bottom: 24px !important;
}

.rating-box {
  padding: 22px !important;
  border-radius: 20px !important;
}

.rating-box strong {
  font-size: 42px !important;
}

.testimonial-masonry {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.review-tile,
.review-tile.large {
  grid-row: auto !important;
  min-height: 240px !important;
  padding: 24px !important;
  border-radius: 22px !important;
}

.review-tile>i {
  font-size: 28px !important;
  line-height: 1 !important;
}

.review-tile p {
  font-size: 15px !important;
  line-height: 1.62 !important;
}

.review-person span {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
}

.review-person small {
  display: block;
}

/* Product inner page compact layout */
.product-hero-v2 {
  padding: 56px 0 !important;
}

.product-hero-v2-grid {
  gap: 30px !important;
  grid-template-columns: 1.1fr .9fr !important;
}

.product-hero-v2-copy h1 {
  font-size: clamp(30px, 4vw, 44px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.8px !important;
  margin-bottom: 12px !important;
}

.product-hero-v2-copy p {
  font-size: 16px !important;
  line-height: 1.55 !important;
  margin-bottom: 18px !important;
}

.product-hero-v2-card {
  min-height: 300px !important;
  padding: 22px !important;
  border-radius: 24px !important;
}

.product-hero-v2-card img {
  max-height: 300px !important;
}

.product-card-label {
  left: 18px !important;
  bottom: 18px !important;
  padding: 10px 13px !important;
  border-radius: 14px !important;
  font-size: 13px !important;
}

.product-layout-v2-section {
  padding: 20px 0 !important;
}

.product-layout-v2 {
  grid-template-columns: 1fr 320px !important;
  gap: 20px !important;
}

.product-overview-v2,
.product-side-v2,
.working-card,
.benefits-card {
  padding: 26px !important;
  border-radius: 22px !important;
}

.overview-chips {
  margin-top: 16px !important;
  gap: 9px !important;
}

.overview-chips span {
  padding: 8px 12px !important;
  font-size: 13.5px !important;
}

.product-spec-v2-section {
  padding: 50px 0 !important;
}

.product-spec-v2-grid {
  grid-template-columns: 360px 1fr !important;
  gap: 26px !important;
  align-items: start !important;
}

.sticky-spec-media {
  position: sticky;
  top: 118px;
  align-self: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.sticky-spec-media h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 950;
  color: var(--navy);
  line-height: 1.12;
  margin: 10px 0 8px;
  letter-spacing: -.5px;
}

.sticky-spec-media h2 span {
  color: var(--blue);
}

.sticky-spec-media p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #315072;
  margin-bottom: 16px;
}

.spec-image-card {
  background: linear-gradient(180deg, #f8fcff, #fff);
  border: 1px solid #dfeef8;
  border-radius: 20px;
  padding: 18px;
  text-align: center;
}

.spec-image-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  margin-bottom: 12px;
}

.spec-image-card strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
  color: var(--navy);
  font-weight: 950;
}

.spec-image-card small {
  display: block;
  color: #5c748d;
  font-weight: 700;
  margin-top: 3px;
}

.product-spec-card {
  border-radius: 22px !important;
  overflow: hidden !important;
}

.spec-table th,
.spec-table td {
  padding: 13px 15px !important;
  font-size: 14.5px !important;
  line-height: 1.45 !important;
}

.product-working-v2-section {
  padding: 25px 0 !important;
}

.working-feature-grid {
  gap: 20px !important;
}

.working-card ol {
  margin-top: 16px !important;
  font-size: 14.5px !important;
  line-height: 1.58 !important;
}

.working-card li {
  margin-bottom: 8px !important;
}

.benefits-card ul {
  margin-top: 16px !important;
  gap: 9px !important;
}

.benefits-card li {
  font-size: 14.5px !important;
  line-height: 1.48 !important;
}

.product-cta {
  margin-top: 0 !important;
}

@media(max-width:991px) {
  body:not(.home) .page-section {
    padding: 42px 0;
  }

  .inner-hero.image-title-section {
    padding: 42px 0 !important;
  }

  .service-detail-layout,
  .contact-redesign-grid,
  .testimonial-feature,
  .product-hero-v2-grid,
  .product-layout-v2,
  .product-spec-v2-grid {
    grid-template-columns: 1fr !important;
  }

  .testimonial-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .sticky-spec-media {
    position: relative !important;
    top: auto !important;
  }

  .spec-image-card img {
    height: 220px;
  }

  .service-two-section-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:575px) {
  .testimonial-masonry {
    grid-template-columns: 1fr !important;
  }

  .review-tile,
  .review-tile.large {
    min-height: auto !important;
  }

  .quick-contact-grid,
  .modern-contact-form .form-row {
    grid-template-columns: 1fr !important;
  }

  .product-hero-v2-card img {
    max-height: 230px !important;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table tr {
    display: block;
    border-bottom: 1px solid var(--line);
  }
}


/* ===== Client final responsive polish - home page not touched ===== */
main .image-title-section,
main .product-hero-v2.image-title-section {
  min-height: 260px !important;
  padding: 72px 0 !important;
  background-position: center !important;
}

main .image-title-section:before,
main .product-hero-v2.image-title-section:before {
  background: linear-gradient(90deg, rgba(0, 22, 55, .95) 0%, rgba(0, 62, 128, .86) 42%, rgba(0, 28, 60, .72) 100%) !important;
  z-index: 0 !important;
}

main .image-title-section:after {
  z-index: 0 !important;
  background: rgba(0, 118, 219, .16) !important;
}

main .image-title-section>.site-wrap,
main .product-hero-v2.image-title-section>.site-wrap {
  position: relative;
  z-index: 2;
}

main .image-title-section .inner-hero-simple h1,
main .product-hero-v2-copy h1 {
  color: #fff !important;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .62) !important;
  font-size: clamp(30px, 4vw, 30px) !important;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

main .image-title-section .inner-hero-simple p,
main .product-hero-v2-copy p {
  color: #fff !important;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .66) !important;
  font-weight: 650 !important;
}

.product-title-bg {
  background-position: center right !important;
}

.contact-title-bg {
  background-position: center right !important;
}

.about-title-bg {
  background-position: center right !important;
}

/* compact about + three-grid purpose */
.about-modern-grid {
  grid-template-columns: 1.05fr .82fr !important;
}

.about-image-stack {
  min-height: 285px !important;
}

.about-image-stack img {
  min-height: 285px !important;
}

.mission-vision-grid.three-purpose-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.three-purpose-grid .mv-image {
  height: 150px !important;
}

.three-purpose-grid .mv-content {
  padding: 18px !important;
}

.three-purpose-grid .mv-content h3 {
  font-size: 20px !important;
}

.three-purpose-grid .mv-content p {
  font-size: 14.5px !important;
  line-height: 1.55 !important;
}

/* products listing page redesigned */
.products-filter-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: start;
}

.product-category-panel {
  position: sticky;
  top: 100px;
  background: linear-gradient(180deg, #ffffff, #f5fbff);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.product-category-panel h3 {
  font-size: 24px;
  font-weight: 950;
  color: var(--navy);
  margin-bottom: 10px;
}

.product-category-panel p {
  font-size: 14.5px;
  color: #315072;
  line-height: 1.55;
  margin-bottom: 16px;
}

.product-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.product-category-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dfeef8;
  color: #24486e;
  font-weight: 800;
  font-size: 14px;
}

.product-category-list i {
  color: var(--blue);
}

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

.products-grid-modern .all-product-card {
  display: grid;
  grid-template-columns: 185px 1fr;
  min-height: 210px;
  border-radius: 22px;
}

.products-grid-modern .all-product-card img {
  height: 100%;
  min-height: 210px;
  padding: 16px;
  background: #f4fbff;
  border-right: 1px solid var(--line);
}

.products-grid-modern .all-product-card div {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.products-grid-modern .all-product-card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 9px;
}

.products-grid-modern .all-product-card p {
  min-height: unset;
  font-size: 14.5px;
  margin-bottom: 18px;
}

.products-grid-modern .all-product-card a {
  align-self: flex-start;
  padding: 9px 14px;
  border-radius: 999px;
  background: #eaf7ff;
  text-decoration: none;
}

/* product enquiry button fix */
.product-side-v2 {
  background: linear-gradient(135deg, #00386f, #008bf5) !important;
  color: #fff !important;
}

.product-side-v2 h3,
.product-side-v2 p {
  color: #fff !important;
}

.product-side-v2 .btn.pill-btn,
.product-side-v2 a.btn,
.cta-actions .btn,
.product-cta .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 999px !important;
  font-weight: 950 !important;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.product-side-v2 .btn.pill-btn {
  background: #fff !important;
  color: #006ed2 !important;
  border: 2px solid #fff !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .16) !important;
}

.product-cta .cta-white {
  background: #fff !important;
  color: #006ed2 !important;
  border: 2px solid #fff !important;
}

.product-cta .cta-outline {
  background: rgba(255, 255, 255, .12) !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, .56) !important;
}

/* contact alignment */
.contact-redesign-grid {
  align-items: stretch !important;
}

.contact-left-panel,
.modern-contact-form {
  height: 100%;
}

.address-card {
  align-items: flex-start;
}

.modern-contact-form .btn {
  min-height: 52px !important;
}

/* testimonials layout fix */
.testimonial-masonry {
  align-items: stretch !important;
}

.review-tile {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.review-person {
  margin-top: auto !important;
}

/* service process horizontal waves */
.service-process-wave {
  padding: 52px 0;
  background: linear-gradient(180deg, #fff, #f3fbff);
  position: relative;
  overflow: hidden;
}

.service-process-wave:before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 80px;
  height: 120px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(0, 136, 245, .16), rgba(0, 136, 245, 0) 70%);
  border-radius: 50%;
}

.process-wave-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.process-wave-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.process-wave-card:after {
  content: "";
  position: absolute;
  right: -38px;
  top: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 12px solid #e1f3ff;
  transform: translateY(-50%);
}

.process-wave-card span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), #0055b8);
  color: #fff;
  font-weight: 950;
  margin-bottom: 14px;
}

.process-wave-card h3 {
  font-size: 18px;
  font-weight: 950;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-wave-card p {
  font-size: 14px;
  line-height: 1.55;
  color: #315072;
  margin: 0;
}

@media(max-width:1199px) {
  .products-grid-modern .all-product-card {
    grid-template-columns: 150px 1fr
  }

  .products-filter-layout {
    grid-template-columns: 260px 1fr;
  }
}

@media(max-width:991px) {

  main .image-title-section,
  main .product-hero-v2.image-title-section {
    min-height: 250px !important;
    padding: 56px 0 !important;
  }

  .mission-vision-grid.three-purpose-grid,
  .products-filter-layout,
  .products-grid-modern,
  .process-wave-row {
    grid-template-columns: 1fr !important;
  }

  .product-category-panel {
    position: relative;
    top: auto;
  }

  .products-grid-modern .all-product-card {
    grid-template-columns: 150px 1fr;
  }

  .about-modern-grid {
    grid-template-columns: 1fr !important;
  }
}

@media(max-width:575px) {

  main .image-title-section,
  main .product-hero-v2.image-title-section {
    min-height: 220px !important;
    padding: 46px 0 !important;
  }

  .products-grid-modern .all-product-card {
    grid-template-columns: 1fr;
  }

  .products-grid-modern .all-product-card img {
    height: 190px;
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-category-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .process-wave-card {
    padding: 18px;
  }
}

/* Final navigation + title visibility fixes */
@media (min-width: 992px) {
  .mainnav .site-wrap {
    width: min(1280px, calc(100% - 30px));
  }

  .navbar-brand img {
    width: 230px;
    height: 62px;
  }

  .mainnav .navbar-nav {
    flex-wrap: nowrap;
    align-items: center;
  }

  .mainnav .nav-link {
    margin: 0 9px;
    font-size: 13.5px;
    white-space: nowrap;
  }

  .mainnav .nav-item.ms-lg-3 {
    margin-left: 8px !important;
  }

  .mainnav .pill-btn {
    padding: 12px 20px;
    white-space: nowrap;
  }

  .hover-dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/* Keep Bootstrap dropdown arrow visible on hover. The earlier underline used ::after and hid the arrow. */
.mainnav .nav-link.dropdown-toggle::after,
.mainnav .nav-link.dropdown-toggle:hover::after,
.mainnav .nav-link.dropdown-toggle.active::after {
  display: inline-block !important;
  position: static !important;
  width: 0 !important;
  height: 0 !important;
  margin-left: .38rem !important;
  vertical-align: .16em !important;
  content: "" !important;
  background: transparent !important;
  border-top: .34em solid !important;
  border-right: .34em solid transparent !important;
  border-bottom: 0 !important;
  border-left: .34em solid transparent !important;
  border-radius: 0 !important;
}

.mainnav .nav-link.dropdown-toggle:hover {
  color: #006ed2 !important;
}

/* Strong readable overlay for all inner-page title banners */
.image-title-section {
  isolation: isolate;
  background-position: center center !important;
  background-size: cover !important;
}

.image-title-section::before {
  z-index: 0 !important;
  background: linear-gradient(90deg, rgba(0, 16, 40, .90) 0%, rgba(0, 43, 88, .80) 42%, rgba(0, 80, 145, .62) 100%) !important;
}

.image-title-section::after {
  z-index: 0 !important;
}

.image-title-section>.site-wrap,
.image-title-section .inner-hero-simple,
.image-title-section .product-hero-v2-grid {
  position: relative;
  z-index: 2;
}

.image-title-section .inner-hero-simple {
  width: min(920px, calc(100% - 32px));
  padding: 20px 30px;
  border-radius: 28px;
  background: rgba(0, 32, 76, .56);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(3px);
}

.image-title-section .inner-hero-simple h1,
.image-title-section .product-hero-v2-copy h1 {
  color: #fff !important;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .70) !important;
}

.image-title-section .inner-hero-simple p,
.image-title-section .product-hero-v2-copy p {
  color: rgba(255, 255, 255, .96) !important;
  text-shadow: 0 3px 15px rgba(0, 0, 0, .68) !important;
  font-weight: 700;
}

.image-title-section .mini-tag {
  color: #fff !important;
  background: rgba(0, 0, 0, .28) !important;
  border: 1px solid rgba(255, 255, 255, .40) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.product-hero-v2.image-title-section .product-hero-v2-copy {
  padding: 28px;
  border-radius: 28px;
  background: rgba(0, 32, 76, .58);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(3px);
}

@media (max-width: 991px) {
  .mainnav {
    height: auto;
    min-height: 82px;
  }

  .navbar-brand img {
    width: 215px;
    height: 58px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  .mainnav .nav-link {
    padding: 13px 8px !important;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mainnav .nav-link:hover::after,
  .mainnav .nav-link.active::after {
    display: none !important;
  }

  .mainnav .dropdown-menu {
    display: none;
    position: static !important;
    float: none;
    transform: none !important;
    width: 100%;
    margin: 0 0 8px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: none;
    background: #f4faff;
  }

  .mainnav .dropdown-menu.show {
    display: block !important;
  }

  .mainnav .dropdown-item {
    white-space: normal;
    line-height: 1.35;
    padding: 10px 12px;
  }

  .mainnav .pill-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .inner-hero.image-title-section {
    padding: 42px 0 !important;
  }

  .image-title-section .inner-hero-simple {
    width: min(100% - 24px, 760px);
    padding: 22px 18px;
    border-radius: 22px;
  }

  .image-title-section .inner-hero-simple h1 {
    font-size: clamp(24px, 8vw, 38px) !important;
    line-height: 1.12 !important;
  }

  .image-title-section .inner-hero-simple p {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }

  .product-hero-v2.image-title-section .product-hero-v2-copy {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .product-hero-v2-copy h1 {
    font-size: clamp(28px, 8vw, 38px) !important;
    line-height: 1.12 !important;
  }
}

@media (max-width: 575px) {
  .site-wrap {
    width: min(100% - 28px, 1240px);
  }

  .navbar-brand img {
    width: 190px;
  }

  .inner-hero.image-title-section {
    padding: 34px 0 !important;
  }

  .image-title-section::before {
    background: rgba(0, 23, 55, .86) !important;
  }

  .image-title-section .inner-hero-simple {
    padding: 20px 16px;
  }
     article {
        text-align: center;
    }

    article i {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 15px;
        width: 100%;
    }

    main .product-hero-v2-copy h1 {
    color: #fff !important;
    text-shadow: 0 4px 22px rgba(0, 0, 0, .62) !important;
    font-size: clamp(24px, 4vw, 35px) !important;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}
.overview-chips span {
            padding: 15px 13px !important;
        font-size: 13.5px !important;
}
.product-side-v2 h3, .product-side-v2 p {
    color: #fff !important;
    text-align: center;
}
    .inner-actions .btn {
        width: 89%;
        justify-content: center;
    }
    .cta-white, .cta-outline {
    border-radius: 999px;
    font-weight: 950;
    padding: 11px 20px;
    transition: .35s;
    white-space: nowrap;
}
 .quick-contact-grid a,
    .quick-contact-grid > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .quick-contact-grid a i,
    .quick-contact-grid > div i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
        font-size: 28px;
    }

    .quick-contact-grid strong,
    .quick-contact-grid span {
        text-align: center;
    }
    .contact-left-panel{
         text-align: center;
    }
}






/* Final mobile dropdown correction: Products/Services must toggle inside the opened mobile menu. */
@media (max-width: 991.98px) {
  .mainnav .dropdown-menu {
    display: none !important;
    position: static !important;
    float: none !important;
    transform: none !important;
    width: 100% !important;
    min-width: 100% !important;
    margin: 0 0 8px !important;
    padding: 8px !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    background: #f4faff !important;
  }

  .mainnav .dropdown-menu.show,
  .mainnav .dropdown.show > .dropdown-menu {
    display: block !important;
  }

  .mainnav .dropdown-toggle {
    cursor: pointer;
    width: 100%;
  }

  .mainnav .dropdown-toggle::after {
    margin-left: auto !important;
  }
}

/* Mobile navbar dropdown fix - Products & Services */
@media (max-width: 991.98px) {
  .mainnav .dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .mainnav .dropdown-menu {
    display: none;
    position: static !important;
    float: none;
    width: 100%;
    min-width: 100%;
    margin: 0;
    padding: 6px 0 10px 12px;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    background: #f7fbff;
  }

  .mainnav .dropdown-menu.show {
    display: block !important;
  }

  .mainnav .dropdown.show > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}


/* FINAL FIX: mobile Products / Services accordion dropdown */
@media (max-width: 991.98px) {
  .mainnav .navbar-collapse {
    max-height: calc(100vh - 90px) !important;
    overflow-y: auto !important;
  }
  .danger-img-wrap.battle img {
    filter: none;
    mix-blend-mode: screen;
    transform: scale(1.18);
}

  .mainnav .dropdown-menu,
  .mainnav .premium-dropdown {
    display: none !important;
    position: static !important;
    float: none !important;
    transform: none !important;
    inset: auto !important;
    width: 100% !important;
    min-width: 100% !important;
    margin: 0 0 10px 0 !important;
    padding: 8px 10px !important;
    border: 0 !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    background: #f4faff !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .mainnav .dropdown.mobile-open > .dropdown-menu,
  .mainnav .dropdown.mobile-open > .premium-dropdown {
    display: block !important;
  }

  .mainnav .dropdown-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    cursor: pointer !important;
  }

  .mainnav .dropdown.mobile-open > .dropdown-toggle::after {
    transform: rotate(180deg) !important;
  }
}

@media (min-width: 992px) {
  .mainnav .hover-dropdown:hover > .dropdown-menu,
  .mainnav .hover-dropdown:hover > .premium-dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
}

/* Product detail page updates - 01 July */
.product-hero-v2-grid {
  grid-template-columns: 1fr !important;
  max-width: 1235px;
}
.product-hero-v2-copy {
  max-width: 600px;
}
.product-hero-v2-copy h1 {
  max-width: 760px;
}
.product-layout-v2 {
 grid-template-columns: 0.95fr 0.85fr !important;
  align-items: stretch;
}
.product-overview-slider {
  background: #fff;
  border: 1px solid #dcecf8;
  border-radius: 26px;
  padding: 18px;
  min-height: 280px;
  box-shadow: 0 20px 50px rgba(0, 44, 95, .10);
  overflow: hidden;
}
.productOverviewSwiper,
.productOverviewSwiper .swiper-wrapper,
.productOverviewSwiper .swiper-slide {
  height: 100%;
}
.productOverviewSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  background: linear-gradient(180deg, #f8fcff, #fff);
  border-radius: 20px;
}
.productOverviewSwiper img {
  width: 100%;
  height: 295px;
  object-fit: contain;
  padding: 12px;
}
.productOverviewSwiper .swiper-pagination-bullet-active {
  background: var(--blue);
}
.product-spec-modern {
  display: grid;
  gap: 24px;
}
.spec-modern-head {
  /* display: grid;
  grid-template-columns: 1fr 330px;
  gap: 24px; */
  align-items: center;
  background: #fff;
  border: 1px solid #dcecf8;
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0, 44, 95, .08);
  text-align: center;
}
.spec-modern-head h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 950;
  color: var(--navy);
  margin: 12px 0 8px;
  line-height: 1.08;
}
.spec-modern-head h2 span {
  color: var(--blue);
}
.spec-modern-head p {
  color: #315072;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.spec-modern-product {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  background: linear-gradient(180deg, #f4fbff, #fff);
  border: 1px solid #dcecf8;
  border-radius: 24px;
  padding: 16px;
}
.spec-modern-product img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}
.spec-modern-product strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
}
.spec-modern-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.spec-modern-item {
  background: #fff;
  border: 1px solid #dcecf8;
  border-radius: 20px;
  padding: 18px;
  min-height: 83px;
  box-shadow: 0 14px 34px rgba(0, 44, 95, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.spec-modern-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 44, 95, .12);
}
.spec-modern-item span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 8px;
}
.spec-modern-item strong {
  display: block;
  color: #153a62;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.45;
}
@media(max-width:991px) {
  .product-layout-v2,
  .spec-modern-head {
    grid-template-columns: 1fr !important;
  }
  .spec-modern-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media(max-width:575px) {
  .product-overview-slider,
  .spec-modern-head {
    border-radius: 22px;
    padding: 18px;
  }
  .productOverviewSwiper img,
  .productOverviewSwiper .swiper-slide {
    height: 220px;
    min-height: 220px;
  }
  .spec-modern-list {
    grid-template-columns: 1fr;
  }
}



@media (max-width: 575px) {
    .spec-modern-list {
        grid-template-columns: 1fr 1fr;
    }
    .spec-modern-item {
    background: #fff;
    border: 1px solid #dcecf8;
    border-radius: 20px;
    padding: 13px;
    min-height: 81px;
    box-shadow: 0 14px 34px rgba(0, 44, 95, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}
.spec-modern-item strong {
    display: block;
    color: #153a62;
    font-size: 14px;
    font-weight: 550;
    line-height: 1.45;
}
.product-spec-v2-section {
    padding: 25px 0 !important;
}
.section-title h2, .about-copy h2, .contact-left-panel h2, .testimonial-feature h2, .service-detail-card h2, .product-overview-v2 h2, .working-card h2, .benefits-card h2 {
    font-size: clamp(23px, 3vw, 30px) !important;
    line-height: 1.14 !important;
    letter-spacing: -.6px !important;
}
.spec-modern-head h2 {
    font-size: clamp(23px, 4vw, 40px);
    font-weight: 950;
    color: var(--navy);
    margin: 12px 0 8px;
    line-height: 1.08;
}
}
/* Product overview image click preview */
.productOverviewSwiper img {
  cursor: zoom-in;
}
.product-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 20, 45, .86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.product-image-lightbox.active {
  display: flex;
}
.product-image-lightbox-inner {
  position: relative;
  width: min(100%, 980px);
  min-height: 420px;
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 28px 90px rgba(0,0,0,.35);
}
.product-image-lightbox img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
}
.product-lightbox-close,
.product-lightbox-prev,
.product-lightbox-next {
  position: absolute;
  border: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background: #0077d9;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 2;
}
.product-lightbox-close {
  top: 14px;
  right: 14px;
  background: #002a5c;
}
.product-lightbox-prev {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.product-lightbox-next {
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .product-image-lightbox-inner {
    min-height: 320px;
    padding: 20px;
  }
  .product-lightbox-prev { left: 8px; }
  .product-lightbox-next { right: 8px; }
}

/* Fixed product popup slider navigation */
.product-image-lightbox-inner .productLightboxSwiper {
  width: 100%;
  height: min(78vh, 650px);
}
.productLightboxSwiper .swiper-wrapper,
.productLightboxSwiper .swiper-slide {
  height: 100%;
}
.productLightboxSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.productLightboxSwiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-lightbox-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  text-align: center;
  z-index: 3;
}
.product-lightbox-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  opacity: .35;
  background: #002a5c;
}
.product-lightbox-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #0077d9;
}
.product-lightbox-prev,
.product-lightbox-next,
.product-lightbox-close {
  cursor: pointer;
}
.product-lightbox-prev:hover,
.product-lightbox-next:hover,
.product-lightbox-close:hover {
  transform: translateY(-50%) scale(1.06);
}
.product-lightbox-close:hover {
  transform: scale(1.06);
}
