html{
        overflow-x: hidden;
}
body{
    overflow: hidden;
  margin: auto;
 font-family: "Instrument Sans", sans-serif!important;
    
}

@media(min-width: 1366px){
.cmpad{
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
}
@media(max-width: 1366px){
.cmpad{
  padding-left:80px;
  padding-right:80px;
}
}
@media(max-width: 991px){
.cmpad{
  padding-left:40px;
  padding-right:40px;
}

}
@media(max-width: 767px){
.cmpad{
  padding-left:15px;
  padding-right:15px;
}

}

p{
    margin-bottom: 0;
    color: #808080;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

a{
  color: #1A1A1A;
  text-decoration: none !important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
   font-size: 16px;
  font-weight: 500;
}
a:hover{
  text-decoration: none !important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
ul {
    padding-left: 0px;
    list-style-type: none;
    margin: 0;
}
img{
    display: block;
  max-width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.posrel{
  position: relative;
}
.btn{
   padding: 6px;
    padding-left: 15px;
    display: flex
;
    font-weight: 500;
    text-align: center;
    border-radius: 30px;
    justify-content: space-between;
        align-items: center;
            gap: 15px;
}
.btn span{
  background:#2060AD;
      display: flex
;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
.btn span img{
width: 11px!important;
}
.btn:hover span{
background: #174985;
}
.btn:hover span img{
animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
    transform: rotate(45deg);
}
@keyframes zoomIn {
    from {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3);
    }
  
    50% {
      opacity: 1;
    }
  }

.mybtn-primary {
    position: relative;
    color: #2060AD;
    background: #FFFFFF;
    overflow: hidden;
    min-width: 161px;
    z-index: 1;
}
.mybtn-primary:hover{
    background: #1c569c;
    color: #FFF;
}



.mybtn-secondary {
   position: relative;
    color: #2060AD;
    background: transparent;
    border: 1px solid #2060AD;
    overflow: hidden;
    min-width: 161px;
    z-index: 1;
}
.mybtn-secondary:hover{
    background: #2060AD;
    color: #FFF;
}


.mybtn-fill {
   position: relative;
    color: #ffffff;
    background: transparent;
    background: #2060AD;
    border: 1px solid transparent;
    overflow: hidden;
    min-width: 161px;
    z-index: 1;
}
.mybtn-fill:hover{
  border: 1px solid #2060AD;
    background: transparent;
    color: #2060AD;
}

.mybtn-fill span{
  background:#ffffff;
      display: flex
;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.mybtn-fill:hover span{
background: #174985;
}
.mybtn-fill:hover span img{
  filter: brightness(0) invert(1);
}


.bnrhed{
  font-size: 64px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0px;
}
.mainhed{
  font-size: 55px;
  font-weight: 500;
  color: #000000;
}
.mainhed span{
  background-image: linear-gradient(180deg, #2060AD, #79B0F2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}






/* loader */
.ip-loader {
	    bottom: 0 !important;
    text-align: center !important;
    position: relative !important;
    margin-left: 0%;
    width: 100%;
    height: 100vh;
    display: flex
;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.loader {
  width: 100px;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
}

.c-leaf {
  position: relative;
  overflow: hidden;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: #ffffff;
  transform: scale(1);
  border-radius: 15px;
}

.c-leaf__icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100px;
  height: 107px;
  fill: white;
}

.c-leaf__fill {
  width: 100px;
  height: 100px;
  background: #2060AD;
  -webkit-animation: fillUp 1.5s ease-in-out infinite;
  animation: fillUp 1.5s ease-in-out infinite;
}

@-webkit-keyframes fillUp {
  0% {
    transform: translate(0, 100px);
  }
  100% {
    transform: translate(0, -100px);
  }
}

@keyframes fillUp {
  0% {
    transform: translate(0, 100px);
  }
  100% {
    transform: translate(0, -100px);
  }
}







/* haeder */

.header{
  
  position: relative;
    z-index: 11;
  padding: 17px 0px;
  background: #ffffff;
}
.logo{
  width: 100%;
  float: left;

}
.logo img{
  width: 100%;
  max-width: 142px;
  float: left;
}
.hdr-menu{
    height: 100%;
}
.menus{
  display: flex;
      gap: 12px;
    flex-direction: row;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
}


/* Fixed header class */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0px 1px 11px #00000030;
  animation: slideDown 0.3s ease forwards;
}

/* Optional animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}



/*mob*/
/* Wrapper */
/* Wrapper & Container */
.mobile-wrapper {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  float: right;
  height: 100%;
  display: flex
;
    align-items: center;
}

.content {
  background: transparent;
  display: block;
  width: 100%;
  height: 100%;
}

nav {
  position: relative;
}

/* Hide native checkbox */
nav input[type=checkbox] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

/* Hamburger Icon */


.hamburger-label {
  position: relative;   /* Use absolute for positioning inside the container */
  top: 7px;        /* Aligns to the right side */
  z-index: 1100;
  width: 30px;
  height: 24px;
  cursor: pointer;
}
.mobile-container {
  position: relative;
}


.hamburger-label::before,
.hamburger-label::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: #2060ad;
  left: 0;
  transition: 0.3s ease;
}

.hamburger-label::before {
  top: 0;
}

.hamburger-label::after {
  top: 10px;
}

/* Becomes X when open */
#hamburger1:checked + .hamburger-label::before {
  transform: rotate(45deg);
  top: 8px;
}

#hamburger1:checked + .hamburger-label::after {
  transform: rotate(-45deg);
  top: 8px;
}

/* Overlay full menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Show overlay */
#hamburger1:checked ~ .overlay {
  opacity: 1;
  visibility: visible;
}

/* Navigation links */
.nav-links {
  margin: 0px 0 0 0;
 padding: 125px 0;
 background: #134075;
}

.nav-links li {
  list-style: none;
  /*border-bottom: 1px solid #ddd;*/
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.nav-links li a,
.submenu-label {
  text-decoration: none;
  display: block;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: white;

}

.nav-links li a:hover,
.submenu-label:hover {
  color: #5794de;
}

/* Animate in when menu opens */
#hamburger1:checked ~ .overlay .nav-links li {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

#hamburger1:checked ~ .overlay .nav-links li:nth-child(1) { transition-delay: 0s; }
#hamburger1:checked ~ .overlay .nav-links li:nth-child(2) { transition-delay: 0.1s; }
#hamburger1:checked ~ .overlay .nav-links li:nth-child(3) { transition-delay: 0.2s; }
#hamburger1:checked ~ .overlay .nav-links li:nth-child(4) { transition-delay: 0.3s; }

/* Submenu */
.has-submenu {
  position: relative;
}

.has-submenu input[type="checkbox"] {
  display: none;
}

.submenu {
  display: none;
  background: #0e3563;
}

.submenu li a {
  font-size: 16px;
  padding: 10px 40px;
  border-top: 1px solid #144b8aa8;
}

.has-submenu input[type="checkbox"]:checked ~ .submenu {
  display: block;
  padding-left: 0;
}

@media(min-width:992px){
  .mobile-wrapper{
    display: none;
  }
}
/*mob*/

.header_menu_area ul li a img{
  margin-left: 0px;
    width: 17px;
}

.header_menu_area {
    position: relative;
    text-align: center;
}
.header_menu_area > ul {
    padding-right: 0px;
    padding: 0px 0px 0px 0px;
    width: auto;
    float: left;
    vertical-align: middle;
}

.header_menu_area > ul > li {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    color: #000000;
    float: left;
    text-decoration: none;
    list-style-type: none;
    position: relative;
    padding: 0px 12px;
    z-index: 1;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    text-decoration: none;
    text-align: center;
}
.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
}
.header_menu_area > ul > li > a {
    position: relative;
    display: flex;
    gap: 4px;
    float: left;
    color: #000000;
    text-decoration: none;
    font-style: normal;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.header_menu_area > ul > li > a:hover{
    color: #2060AD;
}
.stable{
  color: #2060AD !important;
}
.menu ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    top: 0px;
    /* height: 0; */
    padding: 0;
    width: 230px;
    position: absolute;
    right: 20px;
    padding-top: 30px;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 99999;
    /* transform: translate(0, 20px); */
    /* transition: all .2s ease-out; */
    /* -webkit-transform: perspective(600px) rotateX(-90deg); */
    -moz-transform: perspective(600px) rotateX(-90deg);
    -ms-transform: perspective(600px) rotateX(-90deg);
    -o-transform: perspective(600px) rotateX(-90deg);
    /* transform: perspective(600px) rotateX(-90deg); */
    /* -webkit-transition: -webkit-transform .5s ease, opacity .6s ease, max-height .6s step-end, max-width .6s step-end, padding .6s step-end; */
    -o-transition: -o-transform .5s ease,opacity .6s ease,max-height .6s step-end,max-width .6s step-end,padding .6s step-end;
    /* transition: transform .5s ease, opacity .6s ease, max-height .6s step-end, max-width .6s step-end, padding .6s step-end; */
}
.submenu2{
  width: 460px!important;
}
.submenu2 li{
  width: 50%!important;
}

.menu ul li a:hover, .menu ul li:hover>a {
        background: #396dab;
    color: #ffffff;
    text-decoration: none;
    transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.menu li:first-child {
    margin-left: 0;
}
.menu li:first-child {
    margin-left: 0;
}
.menu ul li {
    display: block;
    float: left;
    background: 0 0;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
}
.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
    /* z-index: 9; */
    /* padding-bottom: 50px; */
}
.menu ul li a {
        width: 100%;
    font-size: 16px;
    font-weight: 400;
    padding: 10px;
    display: block;
    color: #ffffff;
    background: #1e5aa1;
    text-align: -webkit-match-parent;
    text-decoration: none;
    /* border-radius: 30px; */
    /* margin-bottom: 10px; */
    text-align: left;
    border-bottom: 1px solid #356bab;
}
.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    /* transform: translate(0, 0); */
    transition: all .5s ease-out;
    height: auto;
    right: -80px;
}


/*overlay*/

.side-menu-4 {
    position: relative;
    top: 0;
    right: 0;
    z-index: 999;
    width: auto;
    float: right;
}

.burger-menu img {
  width: 32px;
 
  cursor: pointer;
}

.overlay-menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 102;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  display: flex;
  background: rgba(0, 0, 0, 0.95);
}

.overlay-menu.active {
  opacity: 1;
  visibility: visible;
}

.overlay-wrap {
  display: flex;
  width: 100%;
  height: 100%;
}

.left-area,
.right-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px;
}
.right-areamain{
  width: 100%;
  float: left;
}
.right-areamain h2{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.right-areamain p{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 14px;
  font-weight: 400;
}
.left-area h6{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 55px;
    font-weight: 500;
    line-height: 127%;
    margin-bottom: 0;
}

.left-area {
  background: #194b88;
  color: white;
  text-align: left;
}

.right-area {
  background: #2060AD;
  color: #A8A8A8;
      box-shadow: -1px 0px 13px #10346057;
  text-align: left;
}

.left-area nav ul {
  list-style: none;
  padding: 0;
}

.left-area nav li {
  margin-bottom: 20px;
}

.left-area nav a {
  color: white;
  font-size: 40px;
  text-decoration: none;
}
.close img{
  width: 100%;
  max-width: 30px;
}
.overlay-menu .close {
  position: absolute;
    right: 60px;
    top: 55px;
    font-size: 30px;
    background: white;
    border-radius: 30px;
    cursor: pointer;
    opacity: 0.5;
    z-index: 10;
    transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.overlay-menu .close:hover {
  opacity: 1;
}
.right-area-main{
  width: 100%;
  float: left;
  margin-bottom: 30px;
}
.right-area-main h2{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 35px;
  font-weight: 500;
}
.right-area-main p{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 15px;
  font-weight: 400;
}
.right-area-main a{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}
.left-area form {
    width: 100%;
    float: left;
    margin-top: 40px;
    transition-delay: 300ms;
}
.ham-field {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
.ham-field label {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    width: 100%;
    float: left;
    margin-bottom: 5px;
}
.ham-field input {
    width: 100%;
    float: left;
    padding: 12px;
    border: none!important;
    border-radius: 10px;
    font-size: 15px;
    color: #000;
    height: 51px;
    outline:none!important;
}
.ham-field textarea {
    width: 100%;
    float: left;
    padding: 12px;
      border: none!important;
    border-radius: 10px;
    font-size: 16px;
    color: #000;
    height: 150px;
    outline:none!important;
}


/* banner */
.bnr-carousel .owl-nav {
    display: none;
}



.bnr-carousel .owl-dots{
  position: relative;
    bottom: 47px;
    max-width: 1145px;
    display: flex
;
    margin: auto;
    justify-content: flex-end;
    padding-right: 15px;
}
.bnr-carousel .owl-dots .owl-dot span {
      background: #ffffff69;
    width: 35px;
    backdrop-filter: blur(16px);
    height: 4px;
    display: block;
    border-radius: 20px;
    margin: 0px 4px;
}

.bnr-carousel .owl-dots .owl-dot.active span {
  background: #FFFFFF; 
   backdrop-filter: unset;    
}
.banner {

    position: relative;
}
.banner .sldimg{
  width: 100%;
  float: left;
  position: relative;
  height: 654px;
  object-fit: cover;

}
.bnrtext {
      display: flex;
      gap: 17px;
    height: 100%;
        width: 50%;
    position: absolute;
    top: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.bnrtext p{
  color: #ECECEC;
}


.spad{
  padding-top: 80px;
  padding-bottom: 80px;
}
.spad2{
   padding-top: 70px;
  padding-bottom: 70px;
}

.slide-con {
    position: fixed;
    z-index: 1;
    right: 0;
    top: 56%;
    transform: translateY(-56%);
    /* bottom: 25%; */
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: -1px 0px 8px #00000026;
    /* overflow: hidden; */
}

.slide-con li {
    border-bottom: 1px solid #C2C2C2;
    background-color: #fff;
    /* backdrop-filter: blur(4px); */
    transition: 0.3s;
    cursor: pointer;
    position: relative;
}
.slide-con li:hover {
    background-color: #2060AD;
}
.slide-con li:hover img{
animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
    filter: brightness(0) invert(1);
}

.slide-con li:nth-child(3) {
    border-bottom: none;
}

.slide-con li a {
        width: 58px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .slide-con li img {
    width: 20px;
    margin: auto;
} */
.slide-con li:first-child {
    border-radius: 16px 0 0 0;
}
.slide-con li:last-child {
    border-radius: 0 0 0 16px;
}














/* about */
.abt{
  overflow: hidden;
    border-radius: 15px;
    position: relative;
    width: 100%;
}
.abt img{
  object-fit: cover;
}
.abt:hover img{
  transform: scale(1.2);
    -webkit-transform: scale(1.2);
}
.abt1 p{
  line-height: 26px;
}
.abtmain{
  width: 340px;
  border-radius: 15px;
}
.abtmain img{
   border-radius: 15px;
   height: 100%;
    object-fit: cover;
}
.subhed{
  background: #EAF3FE;
  color: #515151;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  padding: 9px 13px;
}
.subhed img{
  margin-right: 12px;
}
.abtcont{
  padding-left: 25px;
  gap: 17px;
    width: calc(100% - 340px);
}
.shining{
      position: relative;
    overflow: hidden;
}
.shining:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
.shining:before {
    position: absolute;
    top: 0;
    left: -92%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgb(255 255 255 / 23%) 0%, rgb(255 255 255 / 31%) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.abt-card{
  padding: 18px 22px;
  border-radius: 16px;
  background: #F3F4F5;
}
.abt-card:hover .card-hed img{
animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}
.abt-card .card-hed{
  gap: 12px;
  margin-bottom: 15px;
}
.abt-card p{
  color: #6D6D6D;
}
.abt-card .card-hed p{
font-size: 20px;
color: #000000;
font-weight: 500;
}


/* services */
.services{
  background: #2060AD;
}
.service-sec{
width: 39%;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
}
.service-sec h2{
  color: #fff;
  margin-top: 16px;
}
.service-sec .subhed{
  background: #fff;
}

.serviceslide{
  padding-top: 40px;
}
.service-card{
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  position: relative;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.service-card:hover{
   background: #195297;
   transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.service-card .card-hed{
     display: flex;
    flex-direction: row;
    justify-content: space-between;
        align-items: center;
        padding-bottom: 15px;
        border-bottom: 1px solid #D8D4D4;
  
}

.service-card .card-hed h3{
  color: #000000;
  font-size: 28px;
  font-weight: 500;
  width: calc(100% - 55px);
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
  
}
.service-card:hover .card-hed h3{
   color: #ffffff;
   transition: all .3s ease;
    -webkit-transition: all .3s ease;
   
}
.service-card .card-hed span{
 width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    background: linear-gradient(180deg, #2060AD, #79B0F2);
    align-items: center;
    justify-content: center;
}
.service-card .card-hed span img{
  width: 24px;
}
.service-card:hover .card-hed span img{
   animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
    transform: rotate(45deg);
}
.service-card p{
  padding: 23px 0;
}
.service-card:hover p{
   color: #e2efff;
}
.service-card .card-img{
  overflow: hidden;
    border-radius: 8px;
    position: relative;
}
.service-card .card-img img{
  object-fit: cover;
}
.service-card:hover .card-img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.service-carousel .owl-nav {
       position: absolute;
    top: -47px;
    width: 100%;
    transform: translateY(-100%);
    display: flex
;
    justify-content: flex-end;
    gap: 10px;
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
      border-radius: 50% !important;
    cursor: pointer !important;
    border: 1px solid #C5C5C5 !important;
    width: 47px !important;
    height: 47px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-carousel .owl-nav img{
opacity: 60%;
}
.service-carousel .owl-nav button:hover img{
opacity: 100%;
}
.patern{
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}


/* whychooseus */
.whyfull{
  gap: 15px;
  height: 100%;
}
.whybox{
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  height: 400px!important;
}

.whybox1 img{
  border-radius: 15px;
object-fit: cover;
height: 100%;
width: 100%;
}
.whybox1 .cont{
  position: absolute;
  bottom: 0;
  padding: 20px;
}
.whybox1:hover img{
 transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.whyfull h3{
font-weight: 500;
color: #fff;
font-size: 24px;
}
.whyfull p{
color: #F0EDED;
}
.whybox2{
  height: auto;
  width: 50%;
  background: linear-gradient(180deg, #D3E7FF, #3D77BD);
}
.whybox2 .cont{
  position: absolute;
  bottom: 0;
  padding: 20px;
}
.whybox2 img{
    margin: auto;
    width: 61%;
    margin-top: 35px;
    pointer-events: none;
}
.whybox2:hover img{
   animation-name: zoomIn;
    animation-duration: .7s;
    animation-iteration-count: 1;
}
    
.whybox3{
  width: 50%;
}
.whybox3 img{
  border-radius: 15px;
object-fit: cover;
height: 100%;
width: 100%;
}
.whybox3 .cont{
  position: absolute;
  top: 0;
  padding: 20px;
}
.whybox3:hover img{
 transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.whybox4{
  background: linear-gradient(180deg, #3D77BD, #D3E7FF);
  height: 244px!important;
}
.whybox4 img{
  position: relative;
    bottom: -47%;
    float: right;
    pointer-events: none;
}
.whybox4:hover img{
  bottom: -41%;
}
.whybox4 .cont{
  position: absolute;
  top: 0;
  padding: 20px;
}
.whybox5{
  height: calc(100% - 244px)!important;
  background: #eef6fd;
}
.whybox5 .man{
      width: 100%;
max-width: 74%;
right: 0;
position: absolute;
bottom: 0;
z-index: 1;
pointer-events: none;
}
.whybox5 .whyrounded{
position: absolute;
    bottom: -28%;
    left: 0;
    left: -30%;
    pointer-events: none;
}


.whybox5 .cont{
  position: absolute;
  top: 0;
  padding: 20px;
}
.whybox5:hover .whyrounded{
 transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.whybox5 .cont h3{
  color: #000;
}
.whybox5 .cont p{
  color: #737373;
}
.whyfull3{
  flex-direction: column;
}
.whyfull2{
  height: 400px;
}

/* products */
.products{
  background: #E3F2FF;
}
.products .subhed {
    background: #fff;
}
.producthed{
  padding-bottom: 15px;
}
.producthed p{
  color: #404040;
}
.product-bx{
  border-radius: 15px;
  position: relative;
  margin-bottom: 15px;
}
.product-bx img{
  border-radius: 15px;
  object-fit: cover;
}
.product-bx .cont{
  padding: 17px 21px;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex
;
    align-items: center;
}
.product-bx .cont h3{
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  width: calc(100% - 46px);
}
.product-bx span{
 width: 46px;
    height: 46px;
    border-radius: 30px;
    display: flex;
    background: #fff;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.product-bx span img{
  border-radius: unset;
}
.product-bx:hover span{
  background: #2060AD;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.product-bx span img{
  width: 17px!important;
  height: 17px!important;
}
.product-bx:hover span img{
  filter: brightness(0) invert(1);
      animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
    transform: rotate(45deg);
}

/* counter */
.countbx{
  background: #E3F2FF;
    border-radius: 15px;
    padding: 35px 11px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.countbx p{
  color: #404040;
}
.count-cont{
  padding-top: 32px;
  border-top: 2px dashed #8F8F8F;
}
.count-cont h3{
font-weight: 600;
    font-size: 85px;
    color: #2060AD;
    display: flex;
    letter-spacing: 4px;
    align-items: center;
    background: linear-gradient(180deg, #2060AD, #79B0F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.count-cont h4{
font-weight: 500;
font-size: 22px;
color: #000;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value{
  background: linear-gradient(180deg, #2060AD, #79B0F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.circle-logo{
  width: 120px;
    height: 120px;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.circle-logo .logoicn{
  width: 31%;
  position: relative;
}
.circle-logo .logtext{
width: 100%;
position: absolute;
animation: rotateText 10s linear infinite;
}
@keyframes rotateText {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}


/* clients */
.clients{
  border-radius: 15px;
  border: 1px solid #E8E8E8;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
  
}
.clients img{
  border-radius: 15px;
}
.clients:hover{
  border: 1px solid #AFAFAF;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
  
}
.client-carousel .owl-nav {
    display: none;
}
.clientslide .owl-carousel .owl-stage {
     transition-timing-function: linear !important;
}

.client-carousel2 .owl-nav {
    display: none;
}


/* logistics */
.logistics-con{
  gap:14px;
  height: 100%;
  padding-right: 20px;
      justify-content: center;
}

/* marquee */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #2060AD;
  padding: 30px 0;
}

.marquee-track {
  display: flex;
  animation: marquee-scroll 13s linear infinite;
}

.marquee-item {
  flex: 0 0 auto;
  text-align: center;
  margin-right: 40px;
  display: flex
;
    flex-direction: row;
    align-items: center;
}

.marquee-item img {
  height: 37px;
  width: 37px;
  display: block;
  margin-right: 40px;
  filter: brightness(0) invert(1);
}

.marquee-item p {
  margin: 0;
  font-weight: 600;
  font-size: 34px;
  color: #FFFFFF;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* certifications */
.certifications{
  background: #EAF6FF;
  border-radius: 24px;
}
.certifications .subhed {
    background: #fff;
}
.certifications p{
    max-width: 90%;
    color: #707070;
    margin-top: 5px;
}
.certficatelist{
  padding: 30px 30px 0px;
}
.certificte{
  padding: 0 5px;
}
.certificte img{
border-radius: 14px;
}

/* truck */
.truck-full{
  border-bottom: 7px solid #2060AD;
}
.stoppuls {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: #fff;
  border: 6px solid #2060AD;
  position: relative;
  animation: pulseShadow 2s infinite;
      position: absolute;
    bottom: -15px;
}

@keyframes pulseShadow {
  0% {
    box-shadow:
      0 0 0 7px rgba(47, 105, 174, 0.6),
      0 0 0 14px rgba(47, 105, 174, 0.5);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(47, 105, 174, 0.2),
      0 0 0 20px rgba(47, 105, 174, 0.1);
  }
  100% {
    box-shadow:
      0 0 0 7px rgba(47, 105, 174, 0.6),
      0 0 0 14px rgba(47, 105, 174, 0.5);
  }
}

.truck{
  padding-left: 40px;
  margin-top: 1px;
}
.truck img {
  transition: transform 1.5s ease;
  will-change: transform;
width: 790px;
  max-width: 100%;
}

.scroll-down .truck img {
  transform: translateX(0px); /* Move left when scrolling down */
}

.scroll-up .truck img {
  transform: translateX(250px);  /* Move right when scrolling up */
}


/* calltoaction */

.callto-bx{
  background: url(../img/images/callto.webp);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding: 80px 30px;
     display: flex
;
    align-items: flex-end;
    justify-content: space-between;
}
.callto-bx h2{
  color: #fff;
}
.callto-bx p{
  color: #DEDCDC;
  max-width: 60%;
}



/* footer */
.footer{
  background: #000000;
}
.foter-logo{
  padding-top: 55px;
  padding-bottom: 55px;
  border-bottom: 1px solid #171717;
      justify-content: space-between;
    align-items: center;
    margin-bottom: 55px;
}
.circle-logo2{
  width: 120px;
    height: 120px;
    display: flex;
    position: relative;
    top: 0;
    right: 0;
    justify-content: center;
    align-items: center;
}
.circle-logo2 .logoicn{
  width: 61%;
  position: relative;
}
.circle-logo2 .logtext{
width: 100%;
position: absolute;
animation: rotateText2 10s linear infinite;
}
@keyframes rotateText2 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.ft-logo{
  max-width: 100%;
}

.quicklink h2{
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.quicklink li{
  margin-bottom: 8px;
  color:#B2B3B1;
  font-size: 15px;
  font-weight: 400;
}
.quicklink li a{
  color:#B2B3B1;
  font-size: 15px;
  font-weight: 400;
}
.quicklink2{
  padding-top: 40px;
}
.quicklink li a:hover{
  color:#ececec;

}
.copy{
margin-top: 50px;
padding: 20px 0px;
border-top: 1px solid #171717;
display: flex;
    justify-content: space-between;
    align-items: center;
}
.ft-social{
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.ft-social a {
    width: 35px;
    height: 35px;
    background-color: #484C4F;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ft-social a:hover{
  background: #2d2f31;
}
.ft-social a:hover span img{
animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}

.copy p a{
  color: #808080;
}
.copy p a:hover{
  color: #b3b3b3;
}
.copy p br{
  display: none;
}
.copy p span{
  padding: 0 5px;
}
/* .ft-social a span img{
    height: 17px;
    width: 17px;
} */












@media(max-width: 1366px){
    
.mainhed{
      font-size:45px;
    }
    .abtcont{
      gap: 16px;
    }
  }



@media (min-width:992px) and (max-width:1199px){

.header_menu_area > ul > li > a {
  font-size: 15px;
}
.header_menu_area > ul > li {
  padding: 0px 10px 0px 1px;
}
.whybox5 .man{
  max-width: 95%;
}
.whybox5 .whyrounded {
    bottom: -15%;
    left: -33%;
}
}

@media(max-width: 1199px){
.service-card .card-hed h3{
  font-size: 22px;
}
}



@media(max-width: 991px){

.menus{
  display: none;
}
.side-menu-4{
  display: none;
}
.hdr-menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.bnrtext{
  width: 75%;
}
.bnrhed{
  font-size: 50px;
}
.banner .sldimg{
  height: 545px;
}
.shining:before{
  left: -106%;
}
.mainhed {
        font-size: 35px;
    }
.whybox{
  height: 280px;
}
.whybox4{
  height: 215px!important;
}
.whybox5 .man{
  max-width: 93%;
}
.whybox5 .whyrounded {
    bottom: -15%;
    left: -33%;
}
.count-cont h3{
  font-size: 60px;
}
.count-cont h4{
  font-size: 18px;
}
.certifications p{
  max-width: 100%;
}
.certificte{
  padding: 0;
}
.certficatelist{
  padding: 0;
  padding-top: 25px;
}
.certifications{
  padding: 18px!important;
}
.spad{
  padding-top: 60px;
  padding-bottom: 60px;
}
.spad2{
   padding-top: 60px;
  padding-bottom: 60px;
}
.quicklink{
  margin-bottom: 25px;
}

}

@media(max-width: 767px){
.bnrhed{
  font-size: 40px;
}
.abtcont{
  padding-left: 0;
  width: 100%;
  margin-bottom: 20px;
}
    .service-card .card-hed h3 {
        font-size: 20px;
    }
.service-sec{
  width: 65%;
}
.whybox{
  height: auto!important;
}
   
    .product-bx{
      height: 250px;
    }
    .product-bx img{
      height: 100%;
              width: 100%;
    }
    .product-bx .cont h3{
      font-size: 20px;
    }
    .product-bx .cont {
    padding: 15px 15px;
  }
  .countbx{
    margin-bottom: 15px;
        min-height: 310px;
  }
  .copy{
    flex-direction: column;
            gap: 10px;
                margin-top: 30px;
  }
  .copy p{
    text-align: center;
  }

  .callto-bx{
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 50px 25px;
  }
  .callto-bx p{
    max-width: 100%;
  }
 .whybox4 {
      margin-top: 15px;
        /* height: 215px !important; */
        width: 50%;
    }
  .whybox5{
            height: 340px !important;
     width: 50%;
             margin-top: 15px;
}
    .whybox5 .man {
        max-width: 50%;
    }
        .whybox5 .whyrounded {
        bottom: -30%;
        left: -36%;
    }
    .whybox4 img{
      bottom: -57%;
    }
.whyfull3{
  flex-direction: row;
  height: 100%;
}


}


@media(max-width: 575px){
  
.bnrtext{
  width: 100%;
  padding-right: 58px;
}
.bnrhed{
  font-size: 35px;
}
.abtmain{
  max-width: 100%;
}
.mainhed {
        font-size: 30px;
    }
    .service-sec{
  width: 85%;
}
.service-carousel .owl-nav{
  top: -10px;
  justify-content: flex-start;
}
.serviceslide{
  padding-top: 54px;
}
.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    width: 36px !important;
    height: 36px !important;
}
.service-carousel .owl-nav img{
width: 18px;
}
.whybox2{
  width: 100%;
}
.whybox3{
  width: 100%;
}
.whyfull {
  height: auto!important;
}
.whyfull2 {
  height: auto!important;
}
.whybox2 img {
    margin: auto;
    width: auto;
    margin-top: 15px;
    margin-bottom: 50px;
    pointer-events: none;
}
.whybox{
  height: 280px!important;
}

.whyfull3{
  flex-direction: column;
  height: auto;
}
.whybox5{
  width: 100%;
}
    .whybox5 .man {
        height: calc(100% - 120px) !important;
        width: auto;
    }
        .whybox5 .whyrounded {
        bottom: -31%;
        left: -91px;
        max-width: 230px;
        width: 230px;
    }
.whybox4{
  width: 100%;
}
.product-bx {
        height: 210px;
    }
.circle-logo {
    width: 56px;
    height: 56px;
  }

  .stoppuls {
    width: 20px;
    height: 20px;
    bottom: -13px;}

    @keyframes pulseShadow {
  0% {
    box-shadow:
      0 0 0 5px rgba(47, 105, 174, 0.6),
      0 0 0 10px rgba(47, 105, 174, 0.5);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(47, 105, 174, 0.2),
      0 0 0 16px rgba(47, 105, 174, 0.1);
  }
  100% {
    box-shadow:
      0 0 0 5px rgba(47, 105, 174, 0.6),
      0 0 0 10px rgba(47, 105, 174, 0.5);
  }
}

.marquee-item p{
  font-size: 20px;
}
.marquee-track{
         animation: marquee-scroll 12s linear infinite;
        float: left;
}
.marquee-item img {
    height: 26px;
    width: 26px;
    margin-right: 20px;
  }
  .marquee-item {
margin-right: 20px;  
}

.spad{
  padding-top: 50px;
  padding-bottom: 50px;
}
.spad2{
   padding-top: 50px;
  padding-bottom: 50px;
}
.quicklink{
  margin-bottom: 16px;
}
.quicklink2{
  padding-top: 0px;
}
.circle-logo2 {
    width: 55px;
    height: 55px;
}
.ft-logo {
    max-width: 100%;
    width: 170px;
}
.foter-logo {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.slide-con li a {
           width: 42px;
        height: 38px;
      }

    .slide-con li a img{
  width: 22px;
}
.copy p br{
  display: block;
}
.copy p span{
  display: none;
}
.loader {
  width: 100px;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  height: 100%;
  display: flex;
  align-content: center;
  align-items: center;
}
}


@media(max-width: 360px){
  

.bnrhed{
  font-size: 30px;
}

}





.hidden-input-field {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        height: 0;
        width: 0;
        z-index: -1;
    }




.contact-btn{
    border: 1px solid #2060ad;
}


.grecaptcha-badge { 
    visibility: hidden;
}
