:root {
  --mainColor: #046bd2;
  --hoverColor: #191970;
  --mainBG: #f1f1f1a1;
  --mainPadding: 100px;
  --mainShadow: box-shadow: 2px 2px 8px 0px #1B0764;
}
* {
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
}
ul {
  list-style: none;
  margin: 0;
}
a {
  text-decoration: none;
  outline: none;
}
/* component */
.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
  z-index: -1;
}
.btn {
  background-color: var(--mainColor);
  padding: 8px 30px;
  width: fit-content;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  color: #fff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.btn:focus {
  background-color: var(--hoverColor);
  color: #fff;
}
.btn:hover {
  background-color: var(--hoverColor);
  color: #fff;
}
@media (max-width: 575px) {
  .btn {
    padding: 5px 20px;
    font-size: 14px;
  }
}
.btn-shadow{
  background-color: var(--mainColor);
  border-radius: 7px 7px 7px 7px;
  box-shadow: 2px 2px 8px 0px #1B0764;
  color: #fff;
  padding: 15px 15px 15px 15px;
  width: fit-content;
  cursor: pointer;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}
.btn-shadow:hover{
  background-color: var(--hoverColor);
}
.title::after{
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  height: 4px;
  width: 130px;
  background-color: var(--mainColor);
}

/* header */
/* code for headroom.js libarary */
.headroom {
  will-change: transform;
  transition: transform 200ms linear;
  -webkit-transition: transform 200ms linear;
  -moz-transition: transform 200ms linear;
  -ms-transition: transform 200ms linear;
  -o-transition: transform 200ms linear;
}
.headroom--pinned {
  transform: translateY(0%);
}
.headroom--unpinned {
  transform: translateY(-100%);
}
header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #002a76;
  z-index: 200;
}
header img {
  max-height: 190px;
  width: 160px;
  display: block;
}
@media (max-width: 575px) {
  header img {
    width: 115px;
    height: 50px;
  }
}
header ul {
  display: flex;
}
header ul a {
  display: block;
  width: 100%;
  color: #002a76;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.hero-link {
  font-size: 15px; 
  font-weight: bold; 
  color: #ffffff; 
  text-decoration: none; 
}
.hover-effect {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-effect:hover {
  transform: translateY(-10px); 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
}

.features-section {
  color: #fff;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9); 
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card h6 {
  color: #333; 
}
.btn-rounded {
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  color: rgb(0, 0, 0);
  background-color: #ffffff; 
  border-radius: 50px; 
  text-decoration: none;
  margin: 10px;
  transition: all 0.3s ease-in-out;
}

.btn-rounded:hover {
  transform: scale(1.1); 
}

header ul a:hover {
  color: var(--mainColor);
}
header .toggle {
  background-color: var(--mainColor);
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: 30px;
  padding: 8px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}



header svg {
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media (max-width: 575px) {
  header svg {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  header .toggle {
    display: none !important;
  }
}
@media (max-width: 991px) {
  header ul {
    display: none !important;
  }
}
/*for js to show menu*/
.show-menu {
  display: flex !important;
  position: absolute;
  top: 130%;
  right: 0;
  flex-direction: column;
  background-color: #fff;
  width: 100%;
  padding: 0;
  align-items: center;
  z-index: 100;
  opacity: 0;
  animation: menu linear 0.3s forwards;
  -webkit-animation: menu linear 0.3s forwards;
}
.show-menu li {
  margin: 0 !important;
  text-align: center;
  width: 100%;
  padding: 10px 0;
  cursor: pointer;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.show-menu li:hover {
  background-color: var(--mainBG);
}
@keyframes menu {
  100% {
    opacity: 1;
    top: 100%;
  }
}

/* landing section */
.landing{
  position: relative;
  height: 100vh;
  background-image: url("../img/landing.jpg");
  background-size: cover;
  background-position: center , top;
  z-index: 1;
}
.landing h1{
  font-size: 60px;
  line-height: 1.2em;
  margin: 30px 0;
  max-width: 70%;
}
@media (max-width: 575px) {
  .landing h1{
    font-size: 22px;
  }
}
@media (min-width: 576px) {
  .landing h1{
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  .landing h1{
    font-size: 45px;
  }
}
@media (min-width: 1200px) {
  .landing h1{
    font-size: 60px;
  }
}
/* whats app */
.whats-app{
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  font-size: 18px;
  background-color: #2f2fff !important;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 60%);
}
@media (max-width: 767px) {
  .whats-app{
    font-size: 13px;
  }
}
/* about section */
.about{
  padding-top: var(--mainPadding);
  padding-bottom: var(--mainPadding);
}
.about .box{
  display: flex;
  justify-content: center;
  align-items: end;
  height: 400px;
  background-size: cover;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  z-index: 1;
}
@media (max-width: 767px){
  .about .row > div:not(:last-of-type) .box{
    margin-bottom: 20px;
  }
}
.about .row > div:first-child .box{
  background-image: url("../img/about1.jpg");
  background-position: center;
}
.about .row > div:nth-child(2) .box{
  background-image: url("../img/about2.jpg");
  background-position: center;
}
.about .row > div:last-child .box{
  background-image: url("../img/about3.jpg");
  background-position: center;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

.box {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

ul li:last-child {
  border-bottom: none;
}

.check::before {
  content: "✓";
  color: #28a745;
  margin-right: 10px;
}
.solution-text {
  text-align: center;
}

.image-container {
  display: flex;
  justify-content: center;}

  .image-container img {
    width: 390px; 
    height: auto;
    margin-right: 0.5px; 
}





.info p{
  position: relative;
  width: 65%;
  margin: 0 auto 30px;
}
@media (max-width: 991px) {
  .info p{
    width: 80%;
  }
}
.info p::after{
  content: ",,";
  font-family:fantasy;
  position: absolute;
  bottom: -130px;
  left: 50%;
  font-size: 400px;
  color: #f1f0f0;
  z-index: -1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.info span{
  font-size: 14px;
  font-weight: bold;
}
/* AD section */
.AD{
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--mainBG);
}
.AD img{
  width: 400px;
  height: 130px;
  margin-left: 70px;
}

@media (max-width: 991px) {
  .AD .container{
    text-align: center;
    flex-wrap: wrap;
  }
  .AD .container .btn{
    margin: 0 auto;
  }
  .AD img{
    display: none;
  }
}
/* our selution section */
.our-selution{
  padding-top: var(--mainPadding);
  padding-bottom: var(--mainPadding);
}
.our-selution .text{
  width: 250px;
}
.our-selution .text h1{
  width: 100%;
  margin-bottom: 30px;
}
.our-selution .text .line{
 display: block;
    width: 100px; 
    height: 2px;
    background-color: #000;
    margin: 0 auto; 
}
.our-selution .content{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px , 1fr));
  gap: 20px;
  flex-grow: 1;
}
@media (max-width: 9000px) {
  .our-selution .content{
    grid-template-columns: repeat(2, 1fr);    
    gap: 10px;
  }
  .our-selution .box {
    padding: 15px;
}
  .our-selution .box svg {
    font-size: 20px;
    margin-bottom: 10px;
}
  .our-selution .box p {
    font-size: 14px !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .our-selution .content{
    grid-template-columns: repeat(auto-fill, minmax(200px , 1fr));
    gap: 15px;
  }
}
.our-selution .box{
  box-shadow: 0px 0px 5px 2px #7a7474;
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.our-selution .box svg{
  font-size: 30px;
  margin-bottom: 20px;
  color: #69727d;
}
.our-selution .box p{
  font-size: 18px;
}
@media (max-width: 1199px) {
  .our-selution .container{
    flex-direction: column;
  }
  .our-selution .text{
    width: 100%;
    margin-bottom: 30px;
  }
  .our-selution .text h1{
    font-size: 35px;
  }
  .our-selution .box p{
    font-size: 25px;
  }
}

/* our partner section */
.our-partner1{
  padding-bottom: var(--mainPadding);
}
.our-partner1 .image{
  height: 176px;
  width: 209px;
  padding: 25px;
}


@media (max-width: 767px) {
  .our-partner1 .image{
    height: 100px;
    width: 100px;
    padding: 20px;
  }
}
@media (max-width: 1199px) {
  .our-partner1 .container{
    flex-direction: column;
  }
  .our-partner1 h1{
    margin-right: 0 !important;
    margin-bottom: 20px;
  }
}



/* our partner part 2*/
.our-partner2 {
  padding-top: var(--mainPadding);
  padding-bottom: var(--mainPadding);
}
.our-partner2 .gold-text{
  color: #cead6f;
  letter-spacing: 5px;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 15px;
}
.our-partner2 .image{
  height: 189px;
  width: 167px;
  padding: 30px;
}
@media (max-width: 767px) {
  .our-partner2 .image{
    height: 100px;
    width: 100px;
    padding: 25px;
  }
}
.our-partner2 .image img{
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}
.our-partner2 .image img:hover{
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
/*info2 secion*/
.info2{
  padding-top: 2px;
  text-align: center;
  background-image: url("../img/info.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.info2 .overlay{
  background-color: rgb(0 0 0 / 30%);
}
/* stats section */
.stats{
  padding-top: var(--mainPadding);
  padding-bottom: var(--mainPadding);
  background-color: var(--mainBG);
  text-align: center;
}
@media (max-width: 575px) {
  .stats .row > div {
    flex: 0 0 auto;
    width: 50%;
  }
  .stats h1{
    font-size: 40px;
  }
}
.stats h1{
  font-weight: bold;
  font-size: 50px;
}
.stats p{
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 776px) {
  .stats div:not(:last-of-type) img{
    margin-bottom: 30px;
  }  
  .stats p{
    margin-bottom: 20px;
  }
}
/* footer */
footer{
  background-color: #3a3a3a;
}
footer .contact{
  background-color: var(--mainColor);
  padding: 43px 15px;
}
footer .contact a{
  color: #fff;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}
footer .contact a:hover{
  color: var(--mainColor);
  background-color: #fff;
}
footer .container {
  padding-top: var(--mainPadding);
  padding-bottom: var(--mainPadding);
}
footer .container a img {
  width: 250px;
  height: 70px;
}
footer .container .desc{
  font-size: 14px;
  font-weight: 600;
}
footer .container .social svg{
  width: 20px;
  height: 20px;
  padding: 8px;
  background-color: var(--mainColor);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}
footer .container .social svg:hover{
  background-color: var(--hoverColor);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
footer .links{
  padding: 0;
}
footer .links li{
  color: rgb(255 255 255 / 60%);
  margin-bottom: 10px;
}
footer .links li a{
  color: rgb(255 255 255 / 60%);
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
footer .links li a:hover{
  color: #fff;
  margin-left: 5px;
}
footer .links li a::before{
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  color: rgb(255 255 255 / 60%);
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
footer .links li a:hover:before{
  color: #fff;
}
footer .container > div:last-child a{
  color: rgb(255 255 255 / 60%);
  font-size: 14px;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
footer .container > div:last-child a:hover{
  color: #fff;
}
.copy-rights{
  border-top: 1px solid #A0A0A047;
  padding: 40px 0;
  font-size: 14px;
}
@media (max-width: 767px) {
  footer .contact{
    display: flex;
    flex-direction: column;
    padding: 30px 15px;
  }
  footer .contact h4{
    margin-right: 0 !important;
    margin-bottom: 20px;
  }
  footer .contact a{
    margin-left: 0 !important;
  }
  footer .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  footer .container .row > div:first-child{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
  footer .container .row > div:first-child .social{
    margin-top: 20px !important;
  }
  
}
@media (max-width: 575px) {
  footer .container {
    padding-left: 20px;
  }
  footer .container .row > div:nth-child(2){
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .container .row > div:nth-child(2) li:before{
    content: "";
    margin: 0;
  }
  footer .container .row > div:last-child{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
}
/*---------------------------------------------------------------------------------*/
/* about us page */
/* landing section */
.about-landing{
  position: relative;
  height: 100vh;
  background-image: url("../img/about-bg-img.jpg");
  background-size: cover;
  background-position: center , top;
  z-index: 1;
}
.about-landing h1{
  font-size: 60px;
  line-height: 1.2em;
  margin: 30px 0;
  max-width: 70%;
}
@media (max-width: 575px) {
  .about-landing h1{
    font-size: 30px;
  }
}
@media (min-width: 576px) {
  .about-landing h1{
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  .about-landing h1{
    font-size: 45px;
  }
}
@media (min-width: 1200px) {
  .about-landing h1{
    font-size: 60px;
  }
}
/* lable section */
.lable{
  padding-top: var(--mainPadding);
  padding-bottom: var(--mainPadding);
  text-align: center;
}
/* our mission section */
.our-mission{
  background-color: var(--mainBG);
}
.our-mission video{
  flex-basis: 50%;
}
.our-mission .box{
  flex-basis: 50%;
}
@media (max-width: 991px) {
  .our-mission .content{
    flex-direction: column;
  }
}
/* process section */
.process{
  padding-top: var(--mainPadding);
  padding-bottom: var(--mainPadding);
  text-align: center;
}
/*---------------------------------------------------------------------------------*/
/* services page */
/* landing section */
.services-landing{
  position: relative;
  height: 100vh;
  background-image: url("../img/serves.jpg");
  background-size: cover;
  background-position: center , top;
  z-index: 1;
}
.services-landing h1{
  font-size: 60px;
  line-height: 1.2em;
  margin: 30px 0;
  max-width: 70%;
}
@media (max-width: 575px) {
  .services-landing h1{
    font-size: 30px;
  }
}
@media (min-width: 576px) {
  .services-landing h1{
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  .services-landing h1{
    font-size: 45px;
  }
}
@media (min-width: 1200px) {
  .services-landing h1{
    font-size: 60px;
  }
}
/* about section */
.service-box{
  padding: 40px 20px 20px;
  height: 400px;
  background-size: cover;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  z-index: 1;
}
.service-box p{
  color: #fff;
}
.about .row > div:first-child .service-box{
  background-image: url("../img/about1.jpg");
  background-position: center;
}
.about .row > div:nth-child(2) .service-box{
  background-image: url("../img/about2.jpg");
  background-position: center;
}
.about .row > div:last-child .service-box{
  background-image: url("../img/about3.jpg");
  background-position: center;
}
.service-box span{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-bottom: 30px;
}
.service-box svg{
  font-size: 25px;
}
/* text section */
.text-section{
  padding-top: var(--mainPadding);
  padding-bottom: var(--mainPadding);
  background-color: var(--mainBG);
}
/*---------------------------------------------------------------------------------*/
/* solutions page */
.solution-landing{
  position: relative;
  height: 100vh;
  background-image: url("../img/landing.jpg");
  background-size: cover;
  background-position: center , top;
  z-index: 1;
}
.solution-landing h1{
  font-size: 60px;
  line-height: 1.2em;
  margin: 30px 0;
  max-width: 70%;
}
@media (max-width: 575px) {
  .solution-landing h1{
    font-size: 30px;
  }
}
@media (min-width: 576px) {
  .solution-landing h1{
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  .solution-landing h1{
  }
}
@media (min-width: 1200px) {
  .solution-landing h1{
    font-size: 60px;
  }
}
/* about section */
.solution-box{
  padding: 40px 20px 20px;
  height: 500px;
  background-size: cover;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  z-index: 1;
}
.solution-box p{
  color: #fff;
}
.about .row > div:first-child .solution-box{
  background-image: url("../img/buildings.jpg");
  background-position: center;
}
.about .row > div:nth-child(2) .solution-box{
  background-image: url("../img/white-keyboard.jpg");
  background-position: center;
}
.about .row > div:last-child .solution-box{
  background-image: url("../img/security.jpg");
  background-position: center;
}
.solution-box span{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-bottom: 30px;
}
.solution-box svg{
  font-size: 25px;
}
/* solution-text section */
.solution-text{
  padding-top: var(--mainPadding);
  padding-bottom: var(--mainPadding);
  background-color: var(--mainBG);
}
/*---------------------------------------------------------------------------------*/
/* contact us page */
.contact-landing{
  position: relative;
  height: 100vh;
  background-image: url("../img/contact-us.jpg");
  background-size: cover;
  background-position: center , top;
  z-index: 1;
}
.contact-landing h1{
  font-size: 60px;
  line-height: 1.2em;
  margin: 30px 0;
  max-width: 70%;
}
@media (max-width: 575px) {
  .contact-landing h1{
    font-size: 30px;
  }
}
@media (min-width: 576px) {
  .contact-landing h1{
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  .contact-landing h1{
    font-size: 45px;
  }
}
@media (min-width: 1200px) {
  .contact-landing h1{
    font-size: 60px;
  }
}
/* contact section */
.contact{
  padding-top: var(--mainPadding);
  padding-bottom: var(--mainPadding);
}
iframe{
  height: 100%;
  width: 90%;
  border: 2px solid #ddd;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.contact .social svg{
  width: 20px;
  height: 20px;
  padding: 8px;
  background-color: var(--mainColor);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}
.contact .social svg:hover{
  background-color: var(--hoverColor);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
@media (max-width: 1199px) {
  .contact .row:first-child > div:first-of-type{
    margin-bottom: 30px;
  }
  iframe{
    height: 400px;
  }
  .contact .row > div{
    text-align: center;
  }
}
/* office-contact padge */
.office-contact{
  padding-top: var(--mainPadding);
  padding-bottom: var(--mainPadding);
}
.office-contact .address p{
  width: 40%;
}
.office-contact input:not([type="submit"]),
.office-contact textarea{
  border: 1.5px solid #ddd;
  background-color: #fafafa;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  padding: 10px;
}
.office-contact input:focus{
  outline: none;
}
.office-contact textarea{
  resize: none;
  height: 100px;
  width: 79%;
}
@media (max-width: 991px) {
  .office-contact .row > div:first-of-type {
    margin-bottom: 30px;
  }
}
/*-----------------------------------------------------------------------------------*/
/* Terms and Condtions page */
.text-terms {
  padding-top: 124px;
  padding-bottom: var(--mainPadding);
  background-color: var(--mainBG);
}

/* demo request page */

.demo-request::before{
  content: "";
}

@media (min-width: 992px) {
  .demo-request-Section .line{
    width: 173px !important;
  }
}

/* customers feedback page */

.experience{
  width: 100%;
  height: 45.6px;
  padding: 5px;
  background-color: #fafafa;
  border-color: #ddd;
  border-radius: 3px;
  color: #777777;
}

.experience:focus{
  outline: none;
}

.footer .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer .copy-rights {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #444;
}

/*------------------------------------------------hero Section--------------------------------------------------------*/

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #002a76;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}

.hero-link {
  color: white;
  font-size: 16px;
}

.btn-rounded {
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #fff;
  color: #002a76;
  text-decoration: none;
  font-weight: bold;
}

@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
  }
}



@media (max-width: 767px) {
  .our-selution .d-flex {
    flex-direction: column !important;
  }
  
  .our-selution .text {
    order: 1 !important;
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
  }
  
  .our-selution .content {
    order: 2 !important;
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
  }
  
  .our-selution .content .box {
    width: calc(50% - 10px) !important;
    margin-bottom: 20px !important;
    box-sizing: border-box !important;
  }
}



