@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0px;
  padding: 0px;
  outline: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  border: none;
}

button:focus {
  outline: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
b,
strong,
ul,
li,
span,
ol {
  margin: 0px;
  padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

body {
  font-size: 15px;
  color: #000;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/** **************** **/
html {
  scroll-behvior: smooth;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
  width: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border: none;
  background-color: #7c797a;
}

::-webkit-scrollbar:horizontal {
  height: 7px;
}

::-webkit-scrollbar-track {
  background-color: rgba(239, 239, 239, 0.5);
}

/** **************** **/
.mt15 {
  margin-top: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.mt60 {
  margin-top: 60px;
}

.mb60 {
  margin-bottom: 60px;
}

.pt30 {
  margin-top: 30px;
}

.pd-0 {
  padding: 0;
}

.pd-lr30 {
  padding: 0 30px;
}

/** **************** **/
.align-center {
  align-items: center;
  justify-content: center;
}

/** **************** **/
/*
.menu-btn-name {
  position: fixed;
  z-index: 999;
  top: 0px;
  right: 0px;
  width: 230px;
  height: 80px;
  line-height: 80px;
  background: #2C6CEB;
  color: #fff;
  padding-right: 55px;
}
.menu-btn-name span{
  font-size: 30px;
  font-weight: 400;
  text-align: right;
  display: block;
}
*/
.menu-btn {
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 9999;
  top: 15px;
  right: 40px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.menu-btn:hover span {
  background-color: #fff;
}

.menu-btn.active {
  transform: rotate(180deg);
}

.menu-btn.active span {
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.menu-btn.active span.top {
  transform: rotate(45deg);
  transform-origin: left center;
  top: 9px;
  left: 11.25px;
}

.menu-btn.active span.mid {
  opacity: 0;
  left: 11.25px;
}

.menu-btn.active span.bot {
  transform: rotate(-45deg);
  transform-origin: left center;
  top: 37px;
  left: 11.25px;
}

.menu-btn span {
  display: block;
  width: 40px;
  height: 4px;
  background-color: #fff;
  position: absolute;
  top: 23px;
  left: 0px;
  border-radius: 2px;
  transition: background-color 0.3s ease-in-out;
}

.menu-btn span.top {
  top: 11px;
}

.menu-btn span.bot {
  top: 35px;
}

#nav {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: -1;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

#nav.leftslide {
  width: 500px;
  height: 100vh;
  background-color: #2c6ceb;
  position: fixed;
  top: 50px;
  right: 0;
  transform: translate3d(500px, 0px, 0px);
}

#nav.fadein {
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
}

#nav.topslide {
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate3d(0px, -100%, 0px);
  text-align: center;
}

#nav.pushslide {
  width: 250px;
  height: 100vh;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate3d(0px, 0px, 0px);
}

#nav.open {
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
  z-index: 5;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

#nav.open .nav-inner li {
  animation: fadeInRight 0.4s ease forwards;
}

#nav.open .nav-inner li:nth-of-type(1) {
  animation-delay: 0.35s;
}

#nav.open .nav-inner li:nth-of-type(2) {
  animation-delay: 0.4s;
}

#nav.open .nav-inner li:nth-of-type(3) {
  animation-delay: 0.45s;
}

#nav.open .nav-inner li:nth-of-type(4) {
  animation-delay: 0.5s;
}

#nav.open .nav-inner li:nth-of-type(5) {
  animation-delay: 0.55s;
}

#nav.open .nav-inner li:nth-of-type(6) {
  animation-delay: 0.6s;
}

#nav.open .nav-inner li:nth-of-type(7) {
  animation-delay: 0.66s;
}

#nav.open .nav-inner li:nth-of-type(8) {
  animation-delay: 0.7s;
}

#nav.open .nav-inner li:nth-of-type(9) {
  animation-delay: 0.77s;
}

#nav.open .nav-inner li:nth-of-type(10) {
  animation-delay: 0.77s;
}

#nav .nav-inner li {
  position: relative;
  margin-bottom: 13px;
  opacity: 0;
  transition: transform 0.3s ease-in-out;
}

#nav .nav-inner li a {
  display: inline-block;
  height: 100%;
  text-decoration: none;
  color: #fff;
  font-size: 27px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 4px 8px;
  transition: all 0.2s ease-in-out;
}

#nav .nav-inner li a:hover {
  color: #ffffff;
  transform: translate3d(15px, 0, 0);
}

#nav .nav-inner li a:hover:before {
  content: "";
  left: -15px;
  opacity: 1;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 30px;
  }

  100% {
    opacity: 1;
    left: 0px;
  }
}

.header-top {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 15%);
}

.header-top:after {
  content: "";
  background: rgb(13, 32, 70);
  width: 140px;
  height: 80px;
  z-index: 9999;
  position: fixed;
  top: 0;
  right: 0;
}

.header-top-logo img {
  width: 230px;
  margin-left: 20px;
  margin-top: 2px;
}

.main-nav>ul {
  margin: 2px 160px 2px 0;
  display: flex;
  justify-content: right;
}

.main-nav>ul>li {
  position: relative;
  white-space: nowrap;
}

.main-nav a {
  color: #231e1f;
  font-weight: 400;
  letter-spacing: 0.25px;
  position: relative;
  display: inline-block;
  padding: 12px 15px;
}

.head-main {
  position: relative;
  margin-right: 85px;
  margin-top: -5px;
  font-size: 18px !important;
}

.head-main img {
  width: 50px;
  height: auto;
  position: absolute;
  left: -55px;
  top: 15px;
}

.head-call {
  font-size: 19px;
  font-weight: 500;
  color: #15274c;
}

.head-call span {
  color: #78849b;
  font-weight: 400;
}

.main-nav li:last-child a {
  /* border-right: 0px; */
  padding-right: 0px;
}

.head-cont {
  position: relative;
  margin-top: -5px;
  font-size: 18px !important;
}

.head-cont img {
  width: 50px;
  height: auto;
  position: absolute;
  left: -48px;
  top: 16px;
}

/** **************** **/

#slider {
  margin-right: 0;
  margin-left: 0;
  margin-top: 80px;
}

#carousel {
  overflow: hidden;
}

#carousel .carousel-control {
  background: none;
  top: 45%;
  font-size: 30px;
  text-align: center;
  width: 40px;
  height: 40px;
  opacity: 1;
  position: absolute;
  z-index: 3;
}

#carousel .carousel-control-right {
  right: 4%;
}

#carousel .carousel-control-left {
  left: 0;
}

#carousel .carousel-control-right span {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  transition: transform 0.5s ease;
  opacity: 0;
}

#carousel .carousel-control-left span {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  visibility: hidden;
  transition: transform 0.5s ease;
  opacity: 0;
}

#carousel:hover .carousel-control-right span {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}

#carousel:hover .carousel-control-left span {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}

#carousel .carousel-control span {
  color: #fff;
  background-color: rgb(0 88 171 / 79%);
  height: 45px;
  width: 45px;
  z-index: 121;
  line-height: 45px;
  text-align: center;
  position: absolute;
}

#carousel .carousel-control span:hover {
  background-color: #1e1e1e;
}

#carousel .carousel-item .caption {
  background-color: rgb(0 0 0 / 20%);
  padding: 40px;
  animation-duration: 1s;
  animation-delay: 1s;
}

.carousel-indicators {
  position: absolute;
  left: 0;
  z-index: 15;
  width: 100%;
  padding-left: 0;
  margin-left: 10px;
  text-align: left;
  list-style: none;
  bottom: 15px;
  justify-content: left;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #0009;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #2c6ceb;
}

.carousel-caption {
  text-align: right;
  text-shadow: none;
  right: 0;
  bottom: 0;
  padding-bottom: 0;
}

.carousel-caption h5 {
  font-size: 30px;
  color: rgb(244, 247, 248);
  font-weight: 600;
  display: block;
  margin-bottom: 0;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  transition: all 0.8s linear;
}

.carousel-caption h5 span {
  padding: 10px 30px !important;
  background: #d52a32;
  position: relative;
  top: -10px;
}

.carousel-caption p {
  font-size: 21px;
  color: rgb(244, 247, 248);
  line-height: 1.2;
  width: 450px;
  font-weight: 400;
  display: inline-block;
  background-color: rgba(24, 24, 24, 0.902);
  padding: 20px 30px;
  margin-bottom: 0;
  -webkit-animation-duration: 3.5s;
  animation-duration: 3.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  transition: all 0.8s linear;
}

@-webkit-keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInRight {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

.read_more {
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  padding: 4px 2px 4px 30px;
  text-align: center;
  display: inline-block;
  border-radius: 30px 30px 30px 0;
  border: 1px solid #e81122;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  background: #e81122;
  margin-top: 15px;
}

.read_more:hover {
  color: #202020;
  background: #ffffff;
}

.circle {
  background: #ffffff;
  color: #052b45;
  border-radius: 100px;
  height: 35px;
  width: 35px;
  line-height: 35px !important;
  text-align: center;
  margin: 0 3px 0 12px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.circle:before {
  font-size: 18px;
  padding-top: 2px;
  font-family: "FontAwesome";
  transition: all 0.3s ease;
}

.read_more:hover .circle {
  color: #fff;
  background: #e81122;
}

.carousel-text {
  position: absolute;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  color: #fff;
  text-align: right;
  text-shadow: none;
  right: 0;
  bottom: 22px;
  padding-bottom: 0;
}

.carousel-text h5 {
  font-size: 30px;
  color: rgb(244, 247, 248);
  font-weight: 600;
  display: block;
  margin-bottom: 0;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  transition: all 0.8s linear;
}

.carousel-text h5 span {
  padding: 10px 30px !important;
  background: #d52a32;
  position: relative;
  top: -35px;
}

.carousel-text p {
  font-size: 22px;
  color: rgb(244, 247, 248);
  line-height: 1.2;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 0;
  -webkit-animation-duration: 3.5s;
  animation-duration: 3.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  transition: all 0.8s linear;
}

.carousel-text p span {
  padding: 20px 30px;
  background-color: rgba(24, 24, 24, 0.902);
}

/** **************** **/

.hm_about_section {
  padding: 100px 0 100px 0;
  background:
    radial-gradient(circle,
      rgb(255 255 255 / 88%) 0%,
      rgb(227 232 240 / 90%) 100%),
    url(../images/pro-bg.jpg);
  background-attachment: fixed;
}

.about-align-center {
  align-items: center;
}

.home-about-content h1 {
  font-size: 35px;
  line-height: 50px;
  font-weight: 800;
  color: #15274c;
  letter-spacing: 1.25px;
  padding-bottom: 5px;
}

.home-about-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: #78849b;
  letter-spacing: 0.55px;
  padding-top: 20px;
}

.hm-about-img img {
  /* width: 100%; */
}

.home-about-content h5 {
  font-size: 22px;
  line-height: 40px;
  font-weight: 700;
  color: #ff5e14;
  padding: 0px 0px 10px 0px;
  text-decoration: underline;
}

.sec-icon {
  position: absolute;
  left: 15px;
  /* bottom: 17px; */
  width: 40px;
  height: 40px;
  transition: 0.5s ease-in-out !important;
  -moz-transition: 0.5s ease-in-out !important;
  -o-transition: 0.5s ease-in-out !important;
  -ms-transition: 0.5s ease-in-out !important;
}

.sec-icon span {
  position: absolute;
  top: 25px;
  right: 0;
  bottom: 0;
  font-size: 33px;
  border-radius: 50%;
  color: #2c6ceb;
  left: 0;
  border: 2px solid #2c6ceb;
  margin: auto;
  line-height: 61px;
  width: 65px;
  height: 65px;
  background: #f9f9f9;
  text-align: center;
  transition: 0.5s ease-in-out !important;
  -moz-transition: 0.5s ease-in-out !important;
  -o-transition: 0.5s ease-in-out !important;
  -ms-transition: 0.5s ease-in-out !important;
}

.sec-icon .number {
  position: absolute;
  width: 63px;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #000;
  bottom: -10px;
  left: 0;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: 0.5s ease-in-out !important;
  -moz-transition: 0.5s ease-in-out !important;
  -o-transition: 0.5s ease-in-out !important;
  -ms-transition: 0.5s ease-in-out !important;
  opacity: 0;
}

.home-about-content .content-box-main p {
  padding-top: 5px;
}

.content-box-main {
  position: relative;
  margin-left: 85px;
}

.content-box-main h2 {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  color: #15274c;
  line-height: 32px;
  display: block;
}

.icon-line-chart img {
  align-items: center;
  width: 71%;
  top: -3px;
  bottom: 0;
  position: relative;
}

.service_content {
  position: relative;
  /* cursor: pointer; */
  background: #fff;
  /*padding: 35px 25px;*/
  /* top: 41px; */
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.09);
  border-radius: 15px;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  overflow: hidden;
}

.content_inner {
  padding: 20px;
}

.img-qulty {
  position: absolute;
  display: flex;
}

.sub-image {
  position: relative;
  text-align: center;
}

.content_inner h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2c6ceb;
  letter-spacing: 0.25px;
}

.content_inner p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #78849b;
  letter-spacing: 0.55px;
}

.service_content-two {
  top: 43%;
}

.jsutyfy-centar {
  justify-content: space-evenly;
}

.service_content:hover {
  transform: translateY(-10px);
}

.read-more-btn {
  display: inline-block;
  padding: 10px 30px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  background-color: #2c6ceb;
  font-size: 18px;
  border: 2px solid #2c6ceb;
  border-radius: 15px 0 15px 0;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  border: 2px solid #2c6ceb;
  color: #ffffff;
  border-radius: 0 15px 0 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.hm-enquiry-btn {
  margin-top: 20px;
}

/*--------------------*/
.hm_product_section {
  padding: 80px 0 110px 0;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-position: center;
  position: relative;
}

.hm_product_section:after {
  content: "";
  position: absolute;
  background: #e3e8f0;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 146px;
  z-index: -9;
}

.hm-abt-head {
  text-align: center;
  margin-bottom: 45px;
}

.hm-abt-head h2 {
  font-size: 35px;
  margin-bottom: 1.2rem;
  letter-spacing: 0rem;
  font-weight: 800;
  color: #15274c;
}

.hm-abt-head span {
  display: block;
  padding-top: 15px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #2c6ceb;
}

.main-box-video img {
  transition: all 0.4s ease 0s;
}

.hm-abt-head .heading-bord {
  margin: 0 auto;
}

.heading-bord {
  background: #2c6ceb;
  height: 4px;
  width: 30px;
  position: relative;
  left: 13px;
}

.heading-bord:after {
  content: "";
  background-color: #2c6ceb;
  color: #ff5e14;
  height: 4px;
  position: absolute;
  left: -27px;
  top: 0;
  display: inline-block;
  width: 4px;
  border-radius: 50%;
  box-shadow:
    9px 0 0 0 #2c6ceb,
    18px 0 0 0 #2c6ceb;
}

.main-box-content {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 100%;
}

.main-box-video {
  /* border-radius: 10px; */
  height: auto;
  width: 100%;
  overflow: hidden;
}

.main-box-content img {
  height: auto;
  width: 100%;
}

.service-icon img {
  padding: 16px !important;
}

.main-box-prod-name {
  padding: 20px;
  background: #fff;
  position: relative;
  z-index: 1;
  border-radius: 20px 0px 0px 0px;
  margin-top: -30px;
  width: 90%;
  float: right;
  overflow: hidden;
}

.main-box-prod-name h3 {
  text-align: left;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #15274c;
}

.main-box-prod-name p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #78849b;
  letter-spacing: 0.55px;
  margin-bottom: 15px;
}

.main-box-prod-name-learn {
  display: inline-block;
  padding: 8px 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  background-color: #2c6ceb;
  font-size: 16px;
  border: 2px solid #2c6ceb;
  border-radius: 15px 0 15px 0;
  transition: all 0.3s ease;
}

.main-box-prod-name-learn:hover {
  border-radius: 0 15px 0 15px;
}

.main-box-video img {
  transition: all 0.4s ease 0s;
}

.main-box-video .main-box-img {
  border-radius: 20px;
  overflow: hidden;
}

.main-box-content:hover .main-box-video img {
  transform: scale(1.1) rotate(-1deg);
}

.main-box-content .main-box-prod-name .service-btn {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.main-box-content .main-box-prod-name .service-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 0;
  height: 1px;
  background: #ffffff;
  z-index: -1;
  transition: all 0.4s ease 0s;
}

/*.main-box-prod-name::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #ff5e14;
  transition: all 0.4s ease 0s;
}

.main-box-content:hover .main-box-prod-name::before {
  width: 100%;
}*/

.main-box-content:hover .main-box-prod-name .service-btn::before {
  width: 150px;
}

.main-box-content:hover .main-box-prod-name .service-btn {
  padding-left: 195px;
}

.main-box-content .main-box-video .service-icon::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #2c6ceb;
  border-radius: 10px 0 0 0;
  transition: all 0.4s ease 0s;
}

.feature-box-four .image-box img {
  transition: all 0.4s ease 0s;
}

.main-box-content:hover .main-box-video .service-icon img {
  filter: brightness(0) invert(1);
}

.main-box-content:hover .main-box-video .service-icon::before {
  width: 100%;
}

.main-box-content .main-box-video .service-icon {
  position: absolute;
  left: 41px;
  bottom: 46%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: #ff5e14;
  backdrop-filter: blur(21px);
  font-size: 46px;
  border-radius: 10px;
  z-index: 99;
}

.prod-slider .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  justify-content: center;
  bottom: 0px;
  display: flex;
  gap: 180px;
}

.prod-slider .owl-nav .owl-prev,
.prod-slider .owl-nav .owl-next {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  text-align: center;
  font-size: 20px !important;
  margin: 0 5px;
  background: #e3e8f078 !important;
  color: #2c6ceb !important;
}

.prod-slider .owl-dots {
  text-align: center;
  width: 330px;
  margin: 20px auto 0;
  border-radius: 50px;
  padding: 24px 0;
  box-shadow: 0px 5px 10px 0px rgba(1, 20, 38, 0.1);
  background: #fff;
}

.prod-slider .owl-dots button.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  background: #cccccc00;
  margin: 0 7px;
  box-shadow: 0 0 0 2px #2c6ceb;
  position: relative;
  z-index: 9999;
}

.prod-slider .owl-dots button.owl-dot.active {
  background-color: #2c6ceb;
  box-shadow: 0 0 0 2px #2c6ceb;
}

.prod-slider .owl-dots button.owl-dot:focus {
  outline: none;
}

.prod-slider .owl-nav button:focus {
  outline: none;
}

/*******************/
.hm-abt-head-vdieo {
  text-align: center;
  margin-bottom: 45px;
}

.hm-abt-head-vdieo h2 {
  font-size: 35px;
  margin-bottom: 1.2rem;
  letter-spacing: 0rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

.hm-abt-head-vdieo .heading-bord-vdieo {
  margin: 0 auto;
}

.heading-bord-vdieo {
  background: #fff;
  height: 4px;
  width: 30px;
  position: relative;
  left: 13px;
}

.heading-bord-vdieo:after {
  content: "";
  background-color: #fff;
  color: #fff;
  height: 4px;
  position: absolute;
  left: -27px;
  top: 0;
  display: inline-block;
  width: 4px;
  border-radius: 50%;
  box-shadow:
    9px 0 0 0 #fff,
    18px 0 0 0 #fff;
}

.hm-about {
  padding: 100px 0;
  /* background-size: cover; */
  background-size: cover;
  position: relative;
  background-image: url(../images/main-pro.jpg);
}

.hm-trunkey .nav-pills {
  gap: 15px;
}

.hm-trunkey .nav-link {
  background: #fff;
  color: #15274c;
  min-height: 110px;
  align-items: center;
  display: flex;
  font-size: 22px;
  font-weight: 700;
  padding: 0.5rem 1.4rem;
  border-radius: 20px;
}

.hm-trunkey .nav-link.active {
  background-color: #2c6ceb;
}

.hm-trunkey .tab-pane {
  position: relative;
}

.hm-trunkey .tab-pane::before {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  width: calc(100% - 42px);
  height: 100%;
  bottom: -36px;
  right: -42px;
  left: 82px;
  border: 1px solid #2c6ceb;
  border-bottom-right-radius: 20px;
}

.hm-trunkey-prject {
  border-radius: 26.355px 26.355px 26.355px 26.355px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 5px 5px 25px rgba(13, 32, 70);
  position: relative;
  z-index: 1;
}

.hm-trunkey-prject-plus {
  width: 69px;
  height: 69px;
  background: #2c6ceb;
  position: absolute;
  top: 20px;
  right: 20px;
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 25px;
}

.hm-trunkey-prject-plus i {
  color: #fff;
  font-size: 35px;
}

.hm-trunkey-prject-plus:hover {
  background: rgb(13, 32, 70);
}

.hm-trunkey-prject img {
  width: 100%;
}

/*******************/

.stats-section {
  padding: 80px 0 90px 0;
  background-image: url(../images/mapD.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 75%;
}

.main-stat-number {
  font-size: 17rem;
  font-weight: 700;
  color: #0d2046;
  line-height: 1;
}

.plus-sign {
  color: #2c6ceb;
  font-size: 8rem;
  vertical-align: top;
  margin-left: -4px;
}

.stat-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 12%);
  padding: 30px;
  /* height: 100%; */
  margin-bottom: 23px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 85px;
  margin-bottom: 5px;
}

.card-number {
  font-size: 50px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0px;
  letter-spacing: 0.25px;
}

.card-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff5e14;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  color: #78849b;
  letter-spacing: 0.55px;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .main-stat-number {
    font-size: 6rem;
  }

  .plus-sign {
    font-size: 3rem;
  }

  .stats-section {
    background-size: contain;
  }
}

.align-items-center {
  justify-content: center;
}

.fw-bold {
  color: #2f2f2dc7;
  text-align: center;
  font-weight: 500;
}

/** **************** **/
.main-idustry-img {
  position: relative;
}

.main-idustry-img img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  display: block;
}

.hm_industry_section {
  position: relative;
  margin-top: 110px;
}

.hm_industry_section .row {
  position: relative;
  padding-top: 40px;
}

.hm_industry_section .row:before {
  content: "";
  position: absolute;
  background: rgb(227, 232, 240);
  width: calc(100% - 120px);
  height: calc(100% - 15px);
  top: calc(50% - 25px);
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
}

/*.main-idustry-img:before {
  position: absolute;
  content: '';
  left: -1px;
  top: -4px;
  z-index: 10;
  width: 219px;
  height: 82px;
  mask: url(../images/vector-1.webp) no-repeat center / contain;
  background-color: #F4F5F7;
}*/

.hm_industry_section .inner-container {
  position: relative;
  padding: 0px 0px 90px;
}

.main-industy-content:hover .main-industry-name {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.main-industry-name {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}

.main-industry-name:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.8;
  border-radius: 10px;
  background-color: #2c6ceb;
}

.industry-inner-content {
  position: absolute;
  left: 30px;
  bottom: 30px;
  right: 30px;
}

.industry-inner-content h3 {
  text-align: left;
  font-weight: 500;
  font-size: 25px;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 14px;
}

.industry-inner-content p {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.25px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.hm-abt-head-industry {
  text-align: center;
  margin-bottom: 45px;
}

.hm-abt-head-industry h2 {
  font-size: 35px;
  margin-bottom: 1.2rem;
  letter-spacing: 0rem;
  font-weight: 800;
  color: #15274c;
}

.hm-abt-head-industry .heading-bord-industry {
  margin: 0 auto;
}

.heading-bord-industry {
  background: #2c6ceb;
  height: 4px;
  width: 30px;
  position: relative;
  left: 33px;
  margin-bottom: 20px;
}

.heading-bord-industry:after {
  content: "";
  background-color: #2c6ceb;
  color: #2c6ceb;
  height: 4px;
  position: absolute;
  left: -27px;
  top: 0;
  display: inline-block;
  width: 4px;
  border-radius: 50%;
  box-shadow:
    9px 0 0 0 #2c6ceb,
    18px 0 0 0 #2c6ceb;
}

.hm-abt-head-industry span {
  display: block;
  padding-top: 15px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #2c6ceb;
}

.hm-our-work-cleint {
  border-top: 1px solid #fff2;
  margin-top: 100px;
  padding-top: 60px;
}

.hm-client-img {
  text-align: center;
}

.hm-client-img img {
  height: 95px;
  width: auto !important;
}

.hm-client-img img:hover {
  filter: brightness(0) invert(1);
}

/**/

.indutsry-slider .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  justify-content: center;
  bottom: 0px;
  display: flex;
  gap: 180px;
}

.indutsry-slider .owl-nav .owl-prev,
.indutsry-slider .owl-nav .owl-next {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  text-align: center;
  font-size: 20px !important;
  margin: 0 5px;
  background: #e3e8f078 !important;
  color: #2c6ceb !important;
}

.indutsry-slider .owl-dots {
  background: #fff;
  text-align: center;
  width: 330px;
  margin: 60px auto 0;
  border-radius: 50px;
  padding: 23px 0 24px 0;
  box-shadow: 0px 5px 10px 0px rgba(1, 20, 38, 0.1);
}

.indutsry-slider .owl-dots button.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  background: #cccccc00;
  margin: 0 7px;
  box-shadow: 0 0 0 2px #2c6ceb;
  position: relative;
  z-index: 9999;
}

.indutsry-slider .owl-dots button.owl-dot.active {
  background-color: #2c6ceb;
  box-shadow: 0 0 0 2px #2c6ceb;
}

.indutsry-slider .owl-dots button.owl-dot:focus {
  outline: none;
}

.indutsry-slider .owl-nav button:focus {
  outline: none;
}

/**/
/** **************** **/
.hm-cleints {
  margin-top: 0px;
  margin-bottom: 80px;
}

.hm-cleint-heading {
  text-align: center;
  padding-bottom: 35px;
}

.hm-cleint-heading h2 {
  color: #040404;
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 10px;
}

.hm-cleint {
  text-align: center;
  display: flex;
  justify-content: center;
}

.hm-cleint li {
  width: 8.7%;
  position: relative;
}

.hm-cleint li:before {
  content: "";
  display: block;
  border: 2px solid #dbdde0;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: #fff;
  z-index: 1;
}

.hm-cleint li:after {
  content: "";
  display: block;
  height: 55px;
  top: 0;
  border: 1px dashed #dbdde0;
  width: 0;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.hm-cleint li:nth-child(even):after {
  height: 155px;
}

.hm-cleint-box {
  padding-top: 55px;
}

.hm-cleint-box2 {
  padding-top: 155px;
}

.hm-cleint-box img {
  border: 2px solid #dbdde0;
  border-radius: 100%;
}

/** **************** **/
.justy-center {
  justify-content: center;
  display: flex;
}

.ht-blob-one {
  background: #134cf7;
  width: 27vw;
  height: 22vw;
  top: -15vw;
  left: -15vw;
  display: none;
}

.ht-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(7vw);
  animation: floatBlob 12s ease-in-out infinite alternate;
}

.ht-blob-two {
  background: #fd6119;
  width: 21vw;
  height: 22vw;
  bottom: -15vw;
  right: -15vw;
  filter: blur(7vw) invert(1);
}

.ht-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(7vw);
  animation: floatBlob 12s ease-in-out infinite alternate;
  display: none;
}

.justy-center {
  position: relative;
}

.justy-center::before {
  z-index: 99;
  position: absolute;
  content: "";
  bottom: -2px;
  left: 19.1%;
  background: #ff000000;
  width: 20px;
  rotate: 268deg;
  height: 20px;
  border-bottom-left-radius: 109px;
  box-shadow: -13px 13px 0 12px #ffffff;
}

.justy-center::after {
  z-index: 1;
  position: absolute;
  content: "";
  bottom: 0px;
  right: 19.2%;
  background: #ff000000;
  width: 20px;
  rotate: 10deg;
  height: 20px;
  border-bottom-left-radius: 109px;
  box-shadow: -13px 13px 0 12px #ffffff;
}

footer {
  background-color: rgb(13, 32, 70);
  padding: 70px 0 0 0;
  position: relative;
  margin: 0 25px 25px 25px;
  overflow: hidden;
  border-radius: 25px;
  background-image: url(../images/mark-line-group.png);
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  /* margin-top: 44px; */
  /* border-top: 4px solid #d2151e; */
}

.ftr-head {
  padding-bottom: 10px;
}

.ftr-head h4 {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.5px;
}

.ftr-link ul li a {
  color: #d7d7d7;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 22px;
  padding: 4px 0;
  display: block;
}

.ftr-link ul li:hover a {
  color: #fff;
}

.br {
  border-right: 1px solid #ffffff1a;
  background-color: #ffffff0f;
  padding: 20px;
  border-radius: 22px;
}

.ftr-cont {
  padding-left: 35px;
  position: relative;
  padding-top: 0px;
  margin-bottom: 20px;
}

.ftr-cont h4 {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  /* margin-bottom: 11px; */
  letter-spacing: 0.5px;
}

.ftr-cont p a {
  color: #c3c3c3;
  font-size: 15px;
  font-weight: 400;
}

.ftr-cont p {
  color: #c3c3c3;
  font-size: 15px;
  font-weight: 400;
  padding-top: 5px;
}

.ftr-cont p:hover a {
  color: #fff;
}

.ftr-cont img {
  position: absolute;
  top: 0px;
  left: 0;
}

.ftr-btm {
  padding: 15px 20px;
  background-color: #fff;
  width: 67%;
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  top: 2px;
  border-radius: 20px 20px 0 0;
}

.ftr-btm p {
  font-weight: 400;
  font-size: 15px;
  color: #78849b;
  text-align: center;
}

.ftr-btm p span {
  color: #78849b;
}

.ftr-btm p a {
  color: #0e0e0e;
}

.ftr-btm p a:hover {
  color: #000;
}

.ftr-right {
  padding-top: 20px;
  padding-left: 20px;
}

.ftr-right ul {
  text-align: right;
}

.ftr-right ul li {
  display: inline-block;
  padding-left: 15px;
}

.ftr-right ul li a {
  font-size: 18px;
  color: #dbdbdb;
}

.ftr-right ul li:hover a {
  color: #fff;
}

.social-icon ul {
  opacity: 1;
  text-align: left;
}

.social-icon ul li {
  display: inline-block;
  padding-right: 8px;
}

.social-icon ul li a {
  opacity: 1;
}

.social-icon ul li a i {
  font-size: 14px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
  transition: all 0.8s;
  -webkit-transition: 0.8s ease;
  border: 0px !important;
  background: #2c6ceb !important;
  color: #fff !important;
}

.icon1 i {
  background: #ffffff;
  color: #ff5e14;
  border: 1px solid #000000;
}

.icon2 i {
  background: #bd081c;
  color: #fff;
  border: 1px solid #bd081c;
}

.icon3 i {
  background: #ed2a24;
  color: #fff;
  border: 1px solid #ed2a24;
}

.icon5 i {
  background: #ffffff;
  color: #ff5e14;
  border: 1px solid #000000;
}

.icon4 i {
  background: #ffffff;
  color: #ff5e14;
  border: 1px solid #000;
}

/* .icon6 i {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: #fff;
} */
.icon6 i {
  background: #ffffff;
  color: #ff5e14;
}

.social-icon ul li a:hover i {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
  border-radius: 5px;
}

.pd-0 {
  padding: 0;
}

.mobile-nav .head-main {
  display: none;
}

.mobile-nav .head-cont {
  display: none;
}

/** **************** **/

.mar {
  padding: 35px 0;
  /* background-color: #ff9623; */
}

.outline__text a {
  color: #fff;
  align-items: center;
  display: flex;
}

.header-scrolled .mar {
  top: 66px;
  width: 100%;
  position: fixed;
}

.marquee {
  /* overflow: hidden; */
  position: relative;
}

.marquee__inner-wrap {
  height: 100%;
  width: 100%;
}

.marquee span {
  text-align: center;
  color: rgb(255 255 255);
  font-weight: 400;
  font-size: 64px;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 600;
  padding: 0 10px;
  letter-spacing: 1.55px;
}

.marquee__img {
  width: 20px;
  height: 8rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.marquee__inner {
  height: 100%;
  width: max-content;
  align-items: center;
  display: flex;
  opacity: 0.2;
  position: relative;
  animation: marquee 20s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

#inn_product_sec {
  padding: 60px 0;
}

.outline__text a i {
  color: #da1819;
}

.footer-img img {
  /* width: 100%; */
  height: 76px;
  margin-bottom: 10px;
}

.social-icon {
  margin-top: 15px;
}

.footer-img p {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.25px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.outline__text img {
  width: 60px;
  margin-right: 15px;
}

.logo-bg {
  background-color: #ffffff0f;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 12%);
}

.footer-img {
  position: relative;
  z-index: 2;
}

.contect-left {
  padding: 20px 0 0 0;
  border-top: 1px solid #e1e1e11c;
  margin-top: 20px;
}

.contect-new-left {
  padding-left: 25px;
}

.view a {
  font-size: 14px !important;
  background-color: #2c6ceb !important;
  color: #fff !important;
  width: max-content;
  padding: 5px 20px !important;
  border-radius: 34px;
  margin-top: 10px;
}

.view a:hover {
  background-color: #fff !important;
  color: rgb(0 88 171) !important;
}

/*/////////////////*/

.hm-enquiry {
  padding-bottom: 100px;
}

.hm-enquiry .row {
  align-items: center;
}

.hm-enquiry-img img {
  border-radius: 25px;
}

.hm-enquiry-head h2 {
  font-size: 35px;
  line-height: 50px;
  font-weight: 800;
  color: #15274c;
  letter-spacing: 1.25px;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.hm-enquiry-head p {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: #78849b;
  letter-spacing: 0.55px;
  padding-top: 20px;
}

/* inner page desiing */
.prod-banner {
  background-size: cover !important;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0 120px;
  margin-top: 80px;
}

.prod-banner2 {
  padding: 120px 0;
}

.prod-banner-header {
  position: relative;
  z-index: 1;
}

.prod-banner-header h1 {
  color: #fff;
  text-align: left;
  font-weight: 600;
  padding-bottom: 5px;
}

.prod-banner-header2 ul {
  margin-bottom: 0px;
}

.prod-banner-header ul {
  text-align: left;
}

.prod-banner-header ul li {
  display: inline-block;
  padding: 0 10px;
  color: #0d2046;
  letter-spacing: 0.5px;
  text-align: left;
  font-weight: 600;
  font-size: 17px;
}

.prod-banner-header ul li a,
.prod-banner-header ul li span {
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-size: 15px;
}

.prod-banner-header ul li a,
.prod-banner-header ul li span i {
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-size: 20px;
}

.prod-banner:after {
  content: "";
  position: absolute;
  /* background: rgb(22 55 137 / 27%); */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  border: 0;
}

/* =================== */

.prod-inner-main {
  padding: 0px 0px 100px;
  position: relative;
  margin-top: -75px;
}

.prod-head h2 {
  font-size: 27px;
  color: #15274c;
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 9px;
}

.prod-head h2 span {
  color: #15274c;
}

.inn-prod-dtls p {
  letter-spacing: 0.5px;
  font-size: 15px;
  padding-bottom: 15px;
  line-height: 25px;
  color: #6b6b6b;
}

.enqu-btn {
  margin-top: 10px;
}

.enqu-btn a {
  width: 176px;
  height: 44px;
  background: #2c6ceb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3sease-in-out;
  position: relative;
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.3s;
  overflow: hidden;
  outline: none;
  border-radius: 12px 0px 0px 0px;
  cursor: pointer;
  letter-spacing: 0.6px;
}

.icon-right-arrow12 {
  margin-left: 5px;
}

.prod-img img {
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 7%);
  -webkit-box-shadow: 0 2px 10px 0 rgb(0 0 0 / 7%);
  padding: 8px 8px 8px 8px;
  background-color: #fff;
  border: 1px solid #00000038;
}

/* =================== */
.product_main_wrapper {
  padding: 80px 0;
  background-color: #f8f9fad1;
}

.category-card {
  background: white;
  border-radius: 1px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: sticky;
  top: 100px;
}

.category-header {
  padding: 26px 25px 24px 25px;
}

.category-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #2c6ceb;
  position: relative;
  padding-bottom: 12px;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #2c6ceb;
  border-radius: 2px;
}

.category-list {
  padding: 0 20px 26px 20px;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 13px;
  margin-bottom: 15px;
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #f8f9fa;
  border-radius: 20px;
  border: 1px solid transparent;
  text-decoration: none;
  color: #6c757d;
}

.category-item:last-child {
  margin-bottom: 0;
}

.category-item:hover {
  background-color: #2c6ceb;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #fff;
}

.category-item-active {
  background-color: #0d2046 !important;
  color: #fff;
  box-shadow: 0 4px 12px rgb(44 108 235 / 48%);
}

.category-item-active:hover {
  background-color: #2c6ceb !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgb(2 163 212 / 18%);
  color: #fff;
  text-decoration: none;
}

.category-text {
  flex-grow: 1;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
}

.category-arrow {
  opacity: 0.7;
  transition: opacity 0.2s ease;
  font-size: 14px;
}

.category-item:hover .category-arrow {
  opacity: 1;
}

.category-item-active .category-arrow {
  opacity: 1;
}

.feature-sec {
  padding: 0px 0 30px;
  border-bottom: 0.1px dashed #0d20463b;
  margin-bottom: 35px;
}

.feature-head h3 {
  font-size: 30px;
  color: #15274c;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  margin-bottom: 15px;
}

/* Feature Item Styles */
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px;
  background: #ffffff;
  border: 2px solid #0d20461a;
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-item:hover {
  border-color: #2c6ceb5e;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.feature-wrapper {
  margin-top: 5px;
}

/* Feature Icon Styles */
.feature-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.feature-item:hover .check-icon {
  transform: scale(1.1);
}

/* Feature Content Styles */
.feature-content {
  flex: 1;
}

.feature-content p {
  letter-spacing: 0.5px;
  font-size: 15px;
  line-height: 25px;
  color: #6b6b6b;
  transition: color 0.3s ease;
}

.feature-item:hover p {
  color: #2d3748;
}

/* -- */
/* -- */
.prod-table-main {
  padding: 0 0 50px;
}

.prod-table-head h3 {
  font-size: 30px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0;
  text-align: left;
}

.prod-table-main .prod-table .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgb(0 0 0 / 2%) !important;
}

.prod-table {
  margin-top: 20px;
}

.prod-table thead {
  background: #2b3d53;
}

.prod-table thead th {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
}

.prod-table thead {
  border-radius: 20px 20px 0 0;
}

.prod-table table {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.prod-table table thead th {
  border-bottom: 0;
  padding: 15px 15px;
}

.prod-table table tbody {
  border: 2px solid #f1f1f1;
  border-top: 0px;
}

.prod-table table tbody td {
  padding: 15px 15px;
  color: #6b6b6b;
  border-bottom: 1px solid #f1f1f1;
  border-left: 1px solid #f1f1f1;
}

.list-points {
  margin-top: -1px;
}

.list-points ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  list-style: none;
  letter-spacing: 0.5px;
  font-size: 15px;
  line-height: 25px;
  color: #6b6b6b;
}

.list-points ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 9px;
  height: 9px;
  background: #2c6ceb;
  border-radius: 50%;
  display: inline-block;
}

.benif-head h3 {
  font-size: 30px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0;
  text-align: left;
}

.benif-head h3 span {
  color: #01a3d4;
}

.inn-prod-dtls p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #707b92;
  letter-spacing: 0.55px;
  padding-top: 0px;
}

.text-aling-left {
  text-align: left;
}

.prod-wrapper {
  background-color: rgb(249 251 254);

  padding: 40px 25px;

  border-radius: 20px;

  box-shadow: 4px 7px 25px 20px rgb(0 0 0 / 6%);

  /* border-bottom: 3px solid #e3e3e391; */
}

.inn-prod-dtls span {
  font-size: 20px;
  padding-bottom: 15px;
  color: #2c6ceb;
  font-weight: 500;
}

/** *************** **/

/*******************/
.prod-main-thre {
  padding: 30px 0 40px 0;
}

.prod-main-thre .prod-inner-head {
  margin-bottom: 40px;
}

.prod-industry-box:hover {
  border: 1px solid #0d2046;
}

.prod-industry-box {
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
  min-height: 173px;
  margin-bottom: 20px;
}

.prod-industry-box span {
  padding: 7px 17px 7px 17px;
  background: #2c6ceb;
  color: #ffffff;
  border-radius: 60px;
  display: inline-block;
  margin: 0px 0 15px;
  font-weight: 800;
  font-size: 21px;
}

.prod-industry-box h5 {
  font-size: 19px;
  font-weight: 500;
  color: #0d2046;
  margin-bottom: 0px;
  line-height: 1.6;
  letter-spacing: 0.25px;
  text-transform: capitalize;
}

.prod-industry-box p {
  font-size: 14px;
  color: #4e4e4e;
}

.main-pro-sec {
  background-color: #fff;
  padding: 25px;
}

.product_main_wrapper .feature-sec .inn-prod-dtls p {
  padding-top: 5px;
}

.inner-pro-sec {
  padding: 80px 0 40px 0;
}

/* ====================== */
.hm-stmnt-head {
  text-align: center;
}

.hm-stmnt-head h3 {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 40px;
}

.statement-sec .vision-lft {
  margin-bottom: 70px;
}

.statement-sec .vision-lft .vision-head h4 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #2c6ceb;
  padding: 0px 0 0 30px;
  align-self: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 2px;
}

.statement-sec .vision-head {
  display: flex;
}

.statement-sec .vision-head p {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: #78849b;
  letter-spacing: 0.55px;
  padding-top: 20px;
}

.statement-sec .vision-head p span {
  clip-path: polygon(100% 0%, 92% 52%, 100% 100%, 0 100%, 0% 50%, 0 0);
  background: #0d2046;
  padding: 12px 310px 12px 27px;
  display: inline-block;
  margin-left: -30px;
  margin-bottom: 25px;
  margin-top: 12px;
  color: #fff;
  font-size: 29px;
  font-weight: 700;
  text-shadow: 2px 2px 0px #00000047;
}

.vision-info:after {
  content: "";
  position: absolute;
  top: 81px;
  left: -15px;
  border-right: 4px solid #0d2046;
  border-left: 11px solid #dfdfdf00;
  border-bottom: 3px solid #ffffff00;
  border-top: 9px solid #0d2046;
}

.statement-sec .vision-info {
  padding: 5px 20px 25px 15px;
  border: 1px solid #2c6ceb;
  position: relative;
}

.stmnt-rht-img {
  position: relative;
  z-index: 1;
}

.stmnt-rht-img:after {
  content: "";
  position: absolute;
  bottom: -22px;
  right: -22px;
  height: 300px;
  width: 200px;
  border: 9px solid #2c6ceb;
  z-index: -1;
  animation: myAnim 20s linear 0s infinite normal forwards;
}

@keyframes myAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  10%,
  30%,
  50%,
  70% {
    transform: translateY(-8px);
  }

  20%,
  40%,
  60% {
    transform: translateY(8px);
  }

  80% {
    transform: translateY(6.4px);
  }

  90% {
    transform: translateY(-6.4px);
  }
}

.statement-sec {
  padding-bottom: 60px;
}

/** *************** **/

.contact-section {
  padding: 80px 0;
  background-color: #ffffff;
  min-height: 100vh;
}

/* Contact Info Styles */

.contact-info>h2 {
  font-size: 30px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 30px;
}

.contact-form-wrapper>h2 {
  font-size: 30px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 30px;
}

/* Contact Item Styles */

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 2.5rem;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.address-item {
  border-left: 5px solid #2c6ceb;
}

.phone-item {
  border-left: 5px solid #0d2046;
}

.email-item {
  border-left: 5px solid #2c6ceb;
}

/* Contact Icon */
.contact-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.contact-icon img {
  width: 50px;
  height: 50px;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
}

/* Contact Content */
.contact-content {
  flex: 1;
}

.contact-content>h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact-content>a:hover {
  color: #f7853e;
}

.contact-content>a {
  letter-spacing: 0.5px;
  font-size: 15px;
  line-height: 25px;
  color: #6b6b6b;
}

.contact-content>p {
  letter-spacing: 0.5px;
  font-size: 15px;
  line-height: 25px;
  color: #6b6b6b;
}

/* Map Container */
.map-container {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

/* Form Group */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group>label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.form-group>input,
.form-group>textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  color: #495057;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.form-group>input:focus,
.form-group>textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group>input::placeholder,
.form-group>textarea::placeholder {
  color: #adb5bd;
}

.form-group>textarea {
  resize: vertical;
  min-height: 120px;
}

.cnt-btn {
  margin-top: 10px;
}

.snd-msg-btn:hover {
  background: #4f4f4f;
  color: #fff;
}

.snd-msg-btn {
  background: #0d2046;
  color: #fff;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
}

.snd-msg-btn img {
  margin-left: 5px;
}

/** *************** **/

/* gallery */
.gallery-section {
  padding: 80px 0 60px 0;
}

.inner-img {
  position: relative;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 27px;
  text-align: center;
  padding: 10px;
  border-radius: 15px;
}

.inner-img a {
  display: block;
  position: relative;
  text-decoration: none;
}

.inner-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  border: 5px solid #ffffff;
  border-radius: 15px;
}

/* .inner-img a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #2c6ceb;
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.6s ease;
  z-index: 1;
  pointer-events: none;
} */

.inner-img a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(44 108 235 / 46%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.inner-img a:hover img {
  transform: scale(1.1);
}

.inner-img a:hover::before {
  opacity: 1;
  transform: rotate(270deg);
}

.inner-img a:hover::after {
  opacity: 1;
}

.prod-section {
  padding: 80px 0 80px;
}

.prod-section .prod-range-head {
  text-align: center;
}

.prod-section .prod-range-head h2 {
  font-weight: 800;
  margin-bottom: 30px;
}

.prod-section .inner-prod-name {
  width: 100%;
  background: #3e4095;
  padding: 20px 0;
  text-align: center;
}

.prod-section .inner-prod-name span {
  color: #fff;
  font-size: 16px;
}

.prod-section .inner-prod-dtl {
  margin-bottom: 30px;
}

.inner-prod-img {
  background: #fff;
  border-right: 4px solid #f5f5f5;
  border-left: 4px solid #f5f5f5;
  border-top: 4px solid #f5f5f5;
}

.inner-prod-range .inner-prod-dtl .inner-prod-img img {
  padding: 20px;
}

.inner-img h3 {
  font-size: 19px;
  padding: 11px 11px 0 11px;
  color: #0d2046;
}

/* ====== */
#inn_product_sec {
  padding: 0 0 60px 0;
}

.inner_video_bx {
  padding: 0px;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 7%);
  border-radius: 5px;
}

.inner_video_bx video {
  width: 100%;
  height: 220px;
}

.video_heading {
  position: relative;
  overflow: hidden;
  display: block;
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 7%);
  -webkit-box-shadow: 0 2px 10px 0 rgb(0 0 0 / 7%);
}

.video_heading span {
  text-align: center;
  padding: 7px 7px;
  background: #2c6ceb;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: 500;
  min-height: 60px;
  align-items: center;
  justify-items: center;
  justify-content: center;
  display: flex;
}

.video_mx {
  position: relative;
  padding-bottom: 25px;
}

#inn_product_sec h2 {
  text-align: center;
  padding-bottom: 28px;
  font-weight: 600;
}

/* =============== */
.client-section {
  padding: 80px 0 80px;
}

.cli-heading h2 {
  color: #040404;
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 10px;
  text-align: center;
}

.cli-heading {
  padding-bottom: 30px;
}

.cli-heading .dlab-separator-outer {
  text-align: center;
}

.client-section .client-box {
  text-align: center;
  border: dashed #d6d6d7;
  padding: 10px 5px;
  margin-bottom: 30px;
}

.client-box::after {
  content: "";
  /* border-left: 0px solid #e10000; */
  border-right: 55px solid #ff000000;
  border-bottom: 50px solid #0d2046;
  position: absolute;
  left: 10px;
  bottom: 26px;
  filter: drop-shadow(0px 2px 2px rgba(130, 130, 130, 1));
}

.career-section {
  padding: 80px 0 80px;
}

/* ============= */
.quality {
  padding: 80px 0;
}

.industries-dtl-after {
  background: #edf3ff;
  padding: 30px 30px 30px 0;
  position: relative;
}

.industries-dtl-after:after {
  content: "";
  position: absolute;
  background: #edf3ff;
  width: 70px;
  height: 100%;
  top: 0;
  left: -59px;
  z-index: -99;
}

.industries-img-before {
  width: 100%;
  float: right;
}

.industries-dtl-before {
  background: #f5f6fa;
  padding: 30px 0px 30px 30px;
  position: relative;
}

.industries-dtl-before:before {
  content: "";
  position: absolute;
  background: #f5f6fa;
  width: 70px;
  height: 100%;
  top: 0;
  right: -59px;
  z-index: -99;
}

.industries-img-before {
  width: 100%;
  float: right;
}

.industries-dtl h2 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 45px;
}

.industries-dtl p {
  font-weight: 400;
  color: #3a3a3a;
  font-size: 16px;
  word-spacing: 0.5px;
  text-align: justify;
  padding: 3px 0;
}

.industries-dtl ul li {
  font-weight: 400;
  color: #3a3a3a;
  font-size: 16px;
  margin: 8px 0;
  word-spacing: 0.5px;
  position: relative;
  padding-left: 25px;
}

.industries-dtl ul li span {
  font-weight: 500;
}

.industries-dtl ul li i {
  position: absolute;
  top: 3px;
  left: 0;
  font-weight: 800;
  color: #034aad;
}

.quality .item-center {
  margin-bottom: 70px;
  align-items: center;
}

.quality-img img {
  border: 6px solid #eef3f7;
}

.industries-img-after img,
.industries-img-before img {
  border: 6px solid #2c6ceb;
}

.industry-house {
  margin-bottom: 60px;
}

.industry-house h2 {
  margin-bottom: 10px;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 45px;
  color: #034aad;
  text-align: center;
  text-transform: uppercase;
}

.quality-cetificate {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.quality-cetificate h2 {
  margin-bottom: 10px;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 45px;
  color: #034aad;
  text-align: center;
  text-transform: uppercase;
}

.quality-certi-box {
  text-align: center;
  box-shadow: 0px 3px 25px 0px rgb(11 46 72 / 15%);
  background: #fff;
  border: 4px solid #2e2e2e;
}

/*------------------*/
.inn_prod_table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #cfcfcf;
  text-align: center;
}

.inn_prod_table table thead th:first-child {
  border-top-left-radius: 20px;
}

.inn_prod_table table thead th:last-child {
  border-top-right-radius: 20px;
}

.inn_prod_table table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}

.inn_prod_table table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}

.inn_prod_table table thead th {
  background: #0d2046;
  color: #fff;
  padding: 14px 16px;
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  font-size: 16px;
}

.inn_prod_table table tbody td {
  padding: 14px 16px;
  border: 1px solid #d9d9d9;

  font-size: 15px;
  font-weight: 400;
  color: #555e70;
  letter-spacing: 0.55px;
}

.inn_prod_table table tbody tr:nth-child(even) {
  background: #f7f9fc;
}

.inn_prod_table table tbody tr:hover {
  background: #eef3ff;
  transition: 0.3s ease;
}

.why-us {
  padding: 80px 0 20px;
}

.why-us .item-center {
  margin-bottom: 70px;
  align-items: center;
}

.why-us .quality-img img {
  border: 6px solid #eef3f7;
}



/*  */
/* COVER */
.client-code {
  font-family: 'Barlow', sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
}

:root {
  --navy: #0A1628;
  --steel: #1A3A5C;
  --blue: #1E6FD9;
  --cyan: #00C2D4;
  --orange: #F0680A;
  --light: #F4F7FB;
  --white: #FFFFFF;
  --gray: #6B7A90;
  --border: #D0DCE8;
  --text: #1A2840;
}

.cover {
  background: #0d2046;
  min-height: max-content;
  padding: 90px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}


.cover-top {
  position: relative;
  z-index: 1;
}

.cover-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: #2c6ceb;
  letter-spacing: 3px;
  border: 1px solid rgb(44 108 235 / 59%);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 50px;
}

.cover h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 65px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.cover h1 em {
  font-style: normal;
  color: #2c6ceb;
  display: block;
}

.cover-desc {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  /* max-width: 520px; */
  line-height: 1.7;
  margin-bottom: 50px;
}

.cover-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
}

.cover-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.cover-company {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
}

.cover-company span {
  color: var(--orange);
}

.cover-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.cover-guide-type {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
}

/* GATE PAGE */
.gate-page {
  background: var(--white);
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 40px;
}

.gate-box {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.gate-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.gate-box h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.gate-box p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 32px;
}

.gate-field {
  margin-bottom: 12px;
  text-align: left;
}

.gate-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.gate-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  height: 46px;
  background: #F4F7FB;
}

.gate-btn {
  width: 100%;
  margin-top: 8px;
  background: linear-gradient(135deg, #2c6ceb, #1558B0);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gate-note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 14px;
}

/* CONTENT PAGES */
.page {
  background: var(--white);
  padding: 36px 30px;
}

.page-alt {
  background: var(--light);
  padding: 0px 0px;
}

.page-header {
  background: #2c6ceb;
  padding: 44px 70px 36px;
  border-bottom: 3px solid var(--blue);
}

.page-header .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #0d2046;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.page-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.page-header h2 em {
  font-style: normal;
  color: #0d2046;
}

.client-code h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.client-code h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.client-code p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.accent {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
  margin-bottom: 22px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 13px;
}

th {
  background: var(--navy);
  color: white;
  padding: 11px 14px;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 15px !important;
}

tr:nth-child(even) td {
  background: #F8FAFC;
}

.check {
  color: #22C55E;
  font-weight: 700;
}

.cross {
  color: #EF4444;
  font-weight: 700;
}

.partial {
  color: #F0680A;
  font-weight: 700;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 28px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 20px 0;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  border-top: 3px solid var(--blue);
}

.card.orange {
  border-top-color: var(--orange);
}

.card.cyan {
  border-top-color: var(--cyan);
}

.card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}

.card-num span {
  font-size: 22px;
}

.card-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.industry-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--steel);
}

.industry-pill .ic {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}

.highlight {
  background: linear-gradient(135deg, #EEF4FF, #E8F8FB);
  border-left: 4px solid var(--blue);
  padding: 18px 22px;
  border-radius: 0 10px 10px 0;
  margin: 18px 0;
  font-size: 16px;
}

.highlight.orange {
  background: linear-gradient(135deg, #FEF5EE, #FFF8F0);
  border-left-color: var(--orange);
}

ul.list {
  list-style: none;
  margin: 14px 0;
}

ul.list li {
  padding: 7px 0 7px 28px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

ul.list li:last-child {
  border-bottom: none;
}

ul.list li::before {
  content: 'ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}


/* BACK COVER */
.back-cover {
  background: var(--navy);
  padding: 70px 80px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.back-cover h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.1;
}

.back-cover h2 span {
  color: var(--cyan);
}

.back-cover p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin-bottom: 36px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

.cta-btn.primary {
  background: var(--orange);
  color: white;
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.three-mixer {
  padding: 80px 0;
}

.glance {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--border);
}

.galance-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.galance-text1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.galance-text2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.glance p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

.property {
  padding: 60px 0;
}


.client-code {
  padding: 0 0 50px 0;
}

.dar-grid {
  background: var(--navy);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.text-main-sec {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.dar-grid p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.text-rio {
  color: var(--gray);
}

.text-rio1 {
  color: var(--cyan);
}

.text-rio2 {
  color: var(--orange);
}



.acc {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
  margin-bottom: 20px;
}

.acc.or {
  background: linear-gradient(90deg, var(--orange), #F0A020);
}

.internal-tag {
  font-size: 20px;
  font-weight: 600;
}

.internal-tag {
  display: inline-block;
  background: #FEE8E8;
  color: #B02020;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.designer-tag {
  display: inline-block;
  background: #E8F0FE;
  color: var(--blue);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.email-wrap {
  background: #F4F7FB;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 20px 0;
}

.email-meta {
  background: white;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
}

.email-meta strong {
  color: var(--text);
}

.email-body {
  background: white;
  padding: 22px 26px;
  line-height: 1.85;
  font-size: 14px;
  color: var(--text);
}

.email-body .sig {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
}

.fill {
  background: #FFF3CD;
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 600;
}

.day-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.persona {
  display: inline-block;
  background: var(--steel);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  margin-left: 8px;
  margin-bottom: 16px;
}


.box {
  background: var(--navy);
  border-radius: 10px;
  padding: 22px 26px;
  margin: 20px 0;
}

.box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 0;
}

.box h4 {
  color: white;
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(135deg, #EEF4FF, #E8F8FB);
  border-left: 4px solid var(--blue);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin: 16px 0;
  font-size: 13px;
}

.highlight.or {
  background: linear-gradient(135deg, #FEF5EE, #FFF8F0);
  border-left-color: var(--orange);
}

.from-main {
  background: #E8F5E9;
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid #C8E6C9;
  font-size: 14px;
  line-height: 1.8;
  max-width: 480px;
}
.main-pading{
  padding: 0 0 !important;
}
.co {
  margin-top: 20px;
}
.page-header .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: #0d2046;
    letter-spacing: 1px;
    margin-bottom: 1px;
}