/*
------------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 

---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url('../fonts/Satoshi_Complete/Fonts/WEB/css/satoshi.css');

/* 

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
:root {
  --orange: #0062A3;
  --black: #000000;
  --blue: #0076B9;
  --light-orange: #FFE797;
  --light-green: #E3EAA7;
  --light-blue: #C1E5F9;
  --fs-medium:1rem;
  --fs-xx-medium:1.75rem;
  --fs-large:2.25rem;
  --fs-xx-large: 2.50rem;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: var(--fs-medium);
  line-height: 20px;
  color: var(--black);
  font-family: 'Satoshi-Medium';
}

html,
body {
  font-family: 'Satoshi-Medium';
  font-size: var(--fs-medium);
  background-color: #fff;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none !important;
}

img {
  width: 100%;
}

.bg-light-green {
  background: var(--light-green);
}

.bg-light-orange {
  background: var(--light-orange)
}

.bg-light-blue {
  background: var(--light-blue)
}



.subTitle{
  font-family: 'Satoshi-Bold';
  font-size: var(--fs-large);
  color: var(--black);
  margin-bottom: 10px;
}



/* 
----------------------------------------------
Header Area
----------------------------------------------
*/
.header-area .main-nav {
  background: transparent;
}

.header-area .main-nav .logo {
  margin-left: 20px;
  margin-left: 20px;
  width: 12%;
  line-height: 80px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .nav {
  float: right;
  margin-right: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
  margin-top: 30px;
}

.header-area .main-nav .nav li {
  padding: 0 30px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-family: 'Satoshi-Bold';
  font-size: 15px;
  color: var(--black);
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 32px;
  line-height: 32px;
  border: transparent;
}

.header-area .main-nav .nav li a {
  color: var(--black);
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #0062A3 !important;
}

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 30px;
}

.header-area .main-nav .nav li.submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: var(--black);
  position: absolute;
  right: 18px;
  top: 12px;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 50px;
  opacity: 0;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: var(--black) !important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: #fff;
  color: #ff685f !important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 999;
  right: 40px;
  display: none;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e !important;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent !important;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e !important;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e !important;
}


.header-area.header-sticky {
  min-height: 80px;
  background-color: rgb(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(10px);
    z-index: 10000;
    position: absolute;
  }

.header-area.header-sticky .nav li a.active {
  color: #0062A3;
}


@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-area .main-nav:before {
    display: none;
  }
}

@media (min-width:480px) and (max-width:990px){
  .hero-container{
    padding-top: 20% !important;
  }
}


@media(max-width: 991px) {
    .header-area .main-nav .logo {
      position: relative;
      z-index: 9999;
      color: #1e1e1e;
  }

  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    opacity: 1;
  }

  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }

  .header-area {
    background-color: #f7f7f7;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }

  .header-area .container {
    padding: 0px;
  }

  .header-area .logo {
    width: 40% !important;
  }

  .header-area .menu-trigger {
    display: block !important;
  }

  .header-area .main-nav {
    overflow: hidden;
  }

  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }

  .header-area.header-sticky .nav {
    margin-top: 0 !important;
    padding-top: 16vh;
    position: absolute;
    right: -100%;
    height: 100vh;
  }

  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .header-area .main-nav .nav li a {
    text-align: left;
    height: 50px !important;
    line-height: 50px !important;
    padding: 0 10vw !important;
    border: none !important;
    color: #191a20 !important;
  }

  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }

  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }

  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }

  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }

  .header-area .main-nav .nav li.submenu:after {
    color: #3B566E;
    right: 25px;
    font-size: 14px;
    top: 15px;
  }

  .header-area .main-nav .nav li.submenu:hover ul,
  .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 767px) {
  /* .header-area .main-nav .nav {
    display: flex !important;
  } */
  .addressImage p {
    font-size: 14px; /* Adjust font size for smaller screens */
  }
}





.background-logo {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.careers_bg{
  width: 32%;
  right: 0px;
  position: absolute;
}
.orange_bg{
  width: 32%;
  right: -26%;
  top: -2%;
  position: absolute;
  /* animation-name: orange_bg_aniamtion ;
  animation-duration: 2.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards; */
}
@keyframes orange_bg_aniamtion {
  from {right: 40%;rotate:-120deg;}
  to {right: -17%;rotate: 0deg;top: -2%;}
}
.green_bg{
  width: 30%;
  left: -23%;
  bottom: 3%;
  position: absolute;
  /* animation-name: greeen_bg_aniamtion ;
  animation-duration: 2.2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards; */

}
@keyframes greeen_bg_aniamtion {
  from {left: 40%;rotate:120deg;}
  to {left: -15%; bottom:3%; rotate: 0deg;}
}

.blue_bg{
  width: 30%;
  right: -22%;
  bottom: -80%;
  position: absolute;
  /* animation-name: blue_bg_aniamtion ;
  animation-duration: 4s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards; */
}
@keyframes blue_bg_aniamtion {
  from {right: 40%; bottom: -110px;rotate:100deg;}
  to {right: -15%; bottom: -110px;rotate:0deg;}
}

.ln-40{
    line-height: 40px;
    font-size: 20px;
}
.hero-container{
  z-index: 1;
  width: 80%;
  margin: 0 auto;
  padding-top: 10%;
  }

  .small-title{
    color: rgba(34, 178, 231, 1);
    margin-bottom: 10px;
    font-family: 'Satoshi-Bold';
    text-transform: uppercase;
  }

  .second-container,.third-container,.last-container{
    /* padding-left: 5%;
    padding-right: 5%; */
    padding-top: 3%;
  }

  .story{
    a p {
      margin-top: 15px;
      margin-bottom: 20px;
    }
  }
  .story-title{
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    padding-left: 5%;
    padding-right: 5%;
  }
.faq-container{
    padding: 5%;
   background:  rgba(241, 246, 249, 1);

}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.accordion-item{
    margin-bottom: 10px;
}
.accordion-item:not(:first-of-type) {
    border: 1px solid rgba(0, 0, 0, .125);
}
.other-service{
    list-style: none;
    line-height: 40px;
}
.other-service li{
    color: rgba(34, 114, 172, 1);    
}
.banner-contact{
    padding: 5%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.orange_bg-contact{
    width: 20%;
    position: absolute;
    top: -75%;
    right: 10%;
    rotate:150deg;
}
.green_bg-contact{
    position: absolute;
    left: -300px;
    width: 30%;
    top: 0px;
}
.blue_bg-contact{
    position: absolute;
    right: -150px;
    width: 20%;
    bottom: -120px;
    rotate: -15deg;
}
.button-submit{
  border: 1px;
  border-radius: 4px;
  background: linear-gradient(to right, #3888D2, #134573);
  padding: 10px;
  color: white;
}

.like-heading{
    color: #134573;
}

.arrow-rotate{
    rotate: 190deg;
}
.sendImg{
    width: 10%;
    margin-right: 5px;
}

.faqUL li{
  list-style: none;
  line-height: 40px;
  margin-bottom: 10px;
}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 767px) and (max-width: 1024px) {
  .contactDetails > p{
    font-size: 15px;
  }
  .hero-font {
    font-size: 34px;
    line-height: 1.6;
    font-family: 'Satoshi-Bold' !important;
    font-weight: bold;
  }

  .background-logo {
    height: auto;
    display: block;
    flex-direction: column;
    justify-content: space-evenly;
}
.green_bg {
  width: 15%;
  position: absolute;
  top: 30%;
  left: -7%;
  }
.blue_bg {
  width: 15%;
  right: -7%;
  bottom: -16%;
  position: absolute;
}

  /* .background-logo::before {
    right: 0%;
    width: 360px;
    height: 450px;
  } */

  .service-icon {
    flex-wrap: wrap;
    justify-content: space-evenly;

  }
}

/* Media Query for Mobile Devices */
@media (max-width: 480px) {
  .contactDetails > p{
    font-size: 13px;
  }
  .addressImage p {
    font-size: 14px; /* Adjust font size for smaller screens */
  }
  .hero-container {
    padding-top: 34%;
    width: 90%;
    margin: 0 auto;
    text-align: left;
}
.custom-nav {
  display: none;
}
  .hero-font {
    font-size: 26px;
    line-height: 1.6;
    font-family: 'Satoshi-Bold' !important;
    font-weight: bold;
    width: 100%;
  }
  p{
    text-align: left;
  }

  .service-icon {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .background-logo {
    position: relative;
    overflow: hidden;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }

  .hero-icons {
    max-width: 6rem;
  }
  .hero-icons  img{
    width: 75px;
  }

  .service-wrapper {
    flex-direction: column;
  }
  .orange_bg{
    right: -12%;
    top: 8%;
  }
  .green_bg{
    left: -22%;
    bottom: 35%;
  }
  .blue_bg{
    top: 88%;
    bottom: unset;
  }
  div.owl-nav{
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    justify-self: center;
    gap: 20px;
    button.owl-prev, button.owl-next{
      position: relative;
      box-shadow: unset;
      background-color: transparent;
      border: 2px solid #165888;
    }
    .owl-prev:hover, .owl-next:hover {
      background-color: transparent;
    }
  }
  .owl-stage-outer{
    padding-bottom: 10px;
  }
  .like-heading{
    width: 100%;
  }
}



/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.pl-5 {
  padding-left: 15px !important;
}

.padding-bottom {
  padding-bottom: 25px;
}

.font-vertical {
  font-size: 20px;
}

@media (max-width: 770px) {
  .contactDetails > p{
    font-size: 13px;
  }
  .banner_item div:first-child {
    display: none;
  }

  .banner_item div:nth-child(2) {
    width: 100%;
    padding: 40px 20px;
  }

  .main-banner:before {
    content: '';
    background-image: url(../images/Layer_1.webp);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 10px;
    width: 375px;
    height: 535px;
  }
}


/* 
----------------------
Services
----------------------
*/

.services-header {
  font-size: 3rem;
}

.service {
  font-size: 50px;
}

.service-container {
  display: grid;
  gap: 1ch;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(2, 1fr);

  &>* {
    border-radius: 0.4ch;
    color: hsl(215, 75%, 10%);
    container-type: inline-size;
    grid-column: var(--gc, auto);
    grid-row: var(--gr, auto);
    padding: 1.4rem;

    & h2 {
      margin-block: 0 1ch;
    }
  }
}

.wrapper {
  display: grid;
  margin: 0 auto;
  height: 45rem;
  /* grid-row: 1 / span 2; */
  grid-row: var(--gr, auto);
  max-width: 70rem;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-gap: 30px;
}

.our-service {
  background: border-box;
  padding: 40px !important;
}

.flex {
  display: flex;
}

.ai-consulting {
  --gc: span 6;
  background: linear-gradient(-90deg, #FEC877, #FFFEDA);
  border: 1px solid #FEC877;

  & h2 {
    font-size: var(--fs-xx-medium);
    font-family: 'Satoshi-Bold';
  }
  
  & p{
    font-size: var(--fs-medium);
    font-family: 'Satoshi-Medium';
    line-height: 30px;
    width: 90%;
    text-align: left;
  }
}

.ai-consulting-img {
  position: absolute;
  width: 11rem;
  right: 5%;
  top: 25%;
}



.width-60 {
  width: 60%;
}

.digital_transformation {
  --gc: span 3;
  --gr: span 2;
  background: linear-gradient(-60deg, #8AD2FA, #ffffff);
  border: 1px solid #8AD2FA;

  & h2 {
    font-size: var(--fs-xx-medium);
    font-family: 'Satoshi-Bold';
  }
  
  & p{
    font-size: var(--fs-medium);
    font-family: 'Satoshi-Medium';
    line-height: 30px;
    text-align: left;
  }
}

.product-developement {
  bottom: 0%;
  position: absolute;
  left: 0%;
  left: 12%;
    width: 75%;
}

.digital-transformation {
  bottom: 0%;
  left: 0%;
  position: absolute;
  object-fit: cover;
  border-radius: 17px
}

.support-services {
  right: 5%;
  width: 5rem;
  bottom: 10%;
  position: absolute;
  object-fit: cover;
}

.enterprise_consulting {
  --gc: span 3;
  --gr: span 2;
  background: linear-gradient(-9deg, #AEE569, #FFFDD4);
  border: 1px solid #AEE569;

  & h2 {
    font-size: var(--fs-xx-medium);
    font-family: 'Satoshi-Bold';
  }
  
  & p{
    font-size: var(--fs-medium);
    font-family: 'Satoshi-Medium';
    line-height: 30px;
    width: 90%;
    text-align: left;
  }
}

.product_development {
  --gc: span 4;
  --gr: span 2;
  background: linear-gradient(-90deg, #F8FCFF, #D1EFFF);
  border: 1px solid #F8FCFF;

  & h2 {
    font-size: var(--fs-xx-medium);
    font-family: 'Satoshi-Bold';
  }
  
  & p{
    font-size: var(--fs-medium);
    font-family: 'Satoshi-Medium';
    line-height: 30px;
    width: 90%;
    text-align: left;
  }
}

.support_service {
  --gc: span 4;
  background: linear-gradient(-90deg, #FEC877, #FFFEDA);
  border: 1px solid #FEC877;

  & h2 {
    font-size: var(--fs-xx-medium);
    font-family: 'Satoshi-Bold';
  }
  
  & p{
    font-size: var(--fs-medium);
    font-family: 'Satoshi-Medium';
    line-height: 30px;
    width: 70%;
    text-align: left;
  }
}

/* Hover css for services*/

.ai-consulting:hover, 
.support_service:hover {
  background: linear-gradient(-9deg, #FFFEDA, #FEC877);
}

.product_development:hover{
  background: linear-gradient(-9deg, #D1EFFF, #F8FCFF);
}

.digital_transformation:hover {
  background: linear-gradient(120deg, #8AD2FA, #ffffff);
}

.enterprise_consulting:hover {
  background: linear-gradient(100deg, #AEE569, #FFFDD4); 
}


@media (max-width: 767px) {
  .ai-consulting-img{
    left: 30%;
  }
  .service-container{
    grid-template-columns: unset;
    grid-template-rows: unset;
    &>* {
      background: var(--bg, #ffffff);
      border-radius: 0.4ch;
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
      color: hsl(215, 75%, 10%);
      container-type: inline-size;
      grid-column: var(--gc, auto);
      grid-row: var(--gr, auto);
      padding: 1ch;
  
      & h2 {
        margin-block: 0 1ch;
      }
    }
  }
  .product-developement,.digital-transformation{
    position: unset;
  }
  .product_development,.enterprise_consulting,.support_service,.digital_transformation{
    --gc: span 6;
  }
  .width-60 {
    width: 100%;
  }
  .support_service p {
    width: 100%;
  }
}

/* 
Latest News Start
*/
.latest-news-wrapper-item {
  display: flex;
  flex-direction: column;
}

.our-latest-news {
  padding: 40px;
  margin-top: 10%;
}


.our-latest-news .item {
  margin: 15px;
}

.owl-prev,
.owl-next {
  transition: background-color 0.3s;
}

.owl-prev:hover,
.owl-next:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.ln-desc {
  text-decoration: underline;
}

/* 
    Latest News End
    */


/* 
  Verticals
  */
  .vertical-item:hover {
    box-shadow: 5px 10px 18px #ddd8d8;
    border-radius: 25px;
  }
  .vertical-item h2 {
    line-height: 2;
  }
.our-market-support {
  background: border-box;
   padding: 40px; 
}

.our-market-support h3 {
  padding-bottom: 20px;
}

.careers {
  background: border-box;
   padding: 40px; 
   width: 75%;
}

.careers h3 {
  padding-bottom: 20px;
  text-align: left;
}

.careers p {
  text-align: left;
}
.vertical-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
    align-content: space-between;
    align-items: center;
}
.vertical-wrapper .vertical-item{
  width: 30%;
  margin: 0 auto;
  text-align: center;
}
.careers-vertical-wrapper{
  display: flex;
  flex-wrap: wrap;
    align-content: space-between;
    align-items: left;
}

.careers-vertical-wrapper .careers-vertical-item
{
  width: 43%;
/* offset-x | offset-y | blur-radius | spread-radius | color */
box-shadow: 3px 3px 9px 2px rgba(0, 0, 0, 0.38);
  margin: 20px;
  text-align: left;
  border-radius: 10px;
}

.careers-vertical-wrapper .careers-vertical-item .careers-item-content
{
  width: 90%;
  padding-left: 30px;
  padding-top: 30px;
}
.careers-vertical-item p{
  font-family: 'Satoshi-Medium';
}
.careers-link{
  text-align: right;
  background: #0062A3;
  background: linear-gradient(to top, #0062A3 0%, #83CDFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vertical-item lottie-player{
  width: 50%;
  margin: 0 auto;
}

.vertical-item p{
  font-family: 'Satoshi-Medium';
  line-height: 2;
  padding: 5%;
}

/* Media Query for Mobile Devices */
@media (max-width: 480px) {
  .vertical-wrapper .vertical-item {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .story{
    margin-top: 15% !important;
  }
}

.careers-item-content > img{
  width: 15%;
  margin-bottom: 20px;
}
@media (max-width: 1024px) { 
  .careers{
    width: 100%;
    padding: 0px;
  }
  .careers > img{
    display: none;
  }
  .careers-vertical-wrapper .careers-vertical-item{
    width: 100%;
  }
}


/* Product  Start*/
.r1{
  background: linear-gradient(180deg, rgba(0,23,68,1) 0%, rgba(9,51,131,1) 100%);
}
.ag{
  background: #001744;
}
.cdi{
  background: #003C82 ;
}
.test_n4{
  background: linear-gradient(180deg, rgba(233, 241, 245, 1) 0%, rgba(159, 188, 204, 1) 100%);
}
.n4pic{
  background: linear-gradient(180deg, rgba(239, 254, 255, 1) 0%, rgba(102, 169, 178, 1) 100%);
}

.img-fluid-product-n4pic-body{
  width: 77.3%;
}

.product-item {
  text-align: center;
}

.our-products-title {
  padding: 30px 30px 30px 30px;
}

.img-fluid-r1 {
  width: 150px;
  height: 150px;
}

.img-fluid-ag {
  width: 275px;
  margin: 0 auto;
  padding-top: 20px;
}

.img-fluid-cdi {
  width: 150px;
  margin: 0 auto;
  padding-top: 17px;
}

.products-grid-align {
  padding: 0px;
}

.our-products-pha {
  margin: 0 auto;
  padding-bottom: 25px;
  color: #fff;
  font-size: 25px;
}

.our-products-black {
  margin: 0 auto;
  padding-bottom: 25px;
  font-size: 25px;
}



.products-ag-text-wrap {
  padding-top: 26px;
}

.our-products-row {
  margin: 0px; 
  padding-bottom: 10px;
}

.img-fluid-product-r1-body {
  margin: 0 auto;
}

.img-fluid-product-cdi-body {
  margin: 0 auto;
}

.products-arrow-ag {
  margin: 0 auto;
  width: 35px;
  padding-bottom: 60px;
}

.products-arrow-r1 {
  margin: 0 auto;
  width: 35px;
  padding-bottom: 60px;
}

.prod-arrow-cdi {
  margin: 0 auto;
  width: 35px;
  padding-bottom: 47px;
}

.prod-arrow-height {
  padding-bottom: 40px;
}

/* Product End*/
/* 
---------------
Loader
---------------
 */
.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 99999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* 
service page
*/
.service-bg {
  background: linear-gradient(120deg, rgba(246, 145, 43, 1) 33%, rgba(149, 204, 45, 1) 33%, rgba(11, 130, 217, 1) 33%, rgba(0, 98, 163, 1) 100%);
  height: 40vh;
  object-fit: cover;
}

.service-header-text {
  position: absolute;
  left: 5%;
  top: 20%;
  font-size: 4rem;
  color: #fff;
  font-family: 'Satoshi-Black';
}

.service-wrapper {
  display: flex;
  align-content: center;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  margin: 30px auto;
  list-style-type: none;
}

.service-wrapper li {
  border: 1px solid;
  padding: 10px;
  border-image-slice: 1;
  border-width: 5px;
  border-image-source: linear-gradient(120deg, rgba(246, 145, 43, 1) 33%, rgba(149, 204, 45, 1) 33%, rgba(11, 130, 217, 1) 33%, rgba(0, 98, 163, 1) 100%);
}

.service-container-page {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  /* display: flex; */
  /* align-items: center; */
}

.service-container-page img {
  width: 50%;
}

.faq-bg {
  width: 100%;
  background-color: #020246;
  display: flex;
  justify-content: center;
}

/* .details-section-image {
  wid
} */

.sample{
  transition: width .5s ease, background-color .5s ease;
}

.d-inline-grid {
  display: inline-grid;
}

/* Technology */



.tech-container{
  display: flex;
  justify-content: space-around;
  overflow: hidden;
}


.technology{
  padding: 40px;
  padding-bottom: 0;
}

.tech-left{
  animation: scroll-by ease-in;
  animation-delay: 1s;
  animation-timeline: view();
  animation-range-end: 30%;
}

.tech-right{
  animation: scroll-by-left ease-in;
  animation-delay: 1s;
  animation-timeline: view();
  animation-range-end: 30%;
}

.scroller-inner{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


@keyframes scroll-by-left {
  from  {
    padding-right: 60%;
  }

  to{
    padding-right: 0%;
  }
}

@keyframes scroll-by {
  from  {
    padding-left: 60%;
  }

  to{
    padding-left: 0%;
  }
}

/** Site  Map**/

.flex-container {
  display: flex;
  flex-wrap: wrap;
  background-color: #001E32;
justify-content: space-evenly;
}

.flex-container > div {
  background-color: #001E32;
  width: 20%;
  margin: 1rem;
  line-height: 35px;
}

.flex-container > div >ul {
  list-style-type: none;
  font-size: 0.8rem;
  text-align: left;
  font-family: 'Satoshi-Medium';
  color: #ffffff;

}

.flex-container > div >ul >li >a {
  color: #ffffff;
}

.list-title {
  font-size: 1rem;
  color: #ffffff;
  text-align: left;
  font-family: 'Satoshi-Bold';
  line-height: 50px;
}

/** Footer **/
.footer-container {
  display: flex;
  background-color: #001421;

}
.footer-container > div {
  background-color: hsl(204, 100%, 6%);
  width: 400px;
  font-size: 1.25rem;
  color: #ffffff;
  padding-top: 15px;
  gap: 40px;
  display: flex;
  align-items: center;
}

.footer-container > div > span {
  /* color: #ffffff; */
  padding-right: 10px;
  font-size: 0.90rem;
  text-align: left;
  font-family: 'Satoshi-Regular';
  padding: 10px;
}

.footer {
  background-color: #001421;
  height: 75px;
  font-size: 1.25rem;
  padding-left: 10px;
}

.footer-image {
  width: 40%;
}

.icon-image {
  width: 25px;
}

@media (min-width: 767px) and (max-width: 1024px) { 
  .flex-container > div {
    background-color: #001E32;
    width: 20%;
    margin: 1rem;
    line-height: 35px;
}
}


/* 
Showcase css start
*/

.showcase {
  padding: 20px;
}
.showcase-image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 20px auto;
}
.showcase-image-container div {
  max-width: 48%;
  margin: 1%;
}
.showcase-image-container img {
  max-width: 100%;
  height: auto;
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.5s;
}

.showcase-image-container img:hover {
  filter: grayscale(0%);
  transition: filter 0.5s;
}

@media (max-width: 767px) {
  .showcase-image-container div {
    max-width: 90%;
    padding: 20px 0px;
    margin: 0;
  }
  .showcase-image-container div img {
  filter: grayscale(0%) !important;
  }
  .service-container img {
    display: none !important;
  }
}
/* Showcase css end*/

/* Management css start */
  .our-management {
    background: border-box;
    padding: 40px;
    padding-bottom: 0px !important; 
    /* height: 90px; */
  }
  
  .our-management h3 {
    padding-bottom: 20px;
  }

  .our-management .management-wrapper{
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 25rem;
  }
  
  .management-wrapper .founder {
    width:350px;
    height:350px;
    transform:translate(19%, 7%);
    border-radius:3px;
    box-shadow:0 1px 4px rgba(0,0,0,.3);
    overflow:hidden;
  }
  .management-wrapper .founder .thumb {
    width:auto;
    height:460px;
    background: url('../images/Mahesh.webp') no-repeat center;
    background-size:cover;
    border-radius:3px;
  }
  .management-wrapper .founder .name-background {
    width:auto;
    height:350px;
    position:relative;
    padding:14px 24px;
    background:#166592;
    opacity : 0.7;
    backdrop-filter: blur(10px);
    transition:.4s .15s cubic-bezier(.17,.67,.5,1.03);
  }

  .management-wrapper .founder:hover .name-background {
    transform:translateY(-460px);
  }

  .management-wrapper .founder .name-background .name {
    position:relative;
    margin: 10px 0;
    letter-spacing: 3px;
    color:#ffffff;
    font-family: 'Satoshi-Medium';
    font-size: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 0px #4E7781;
  }
  .management-wrapper .founder .name-background .role {
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .85rem;
    color:#b7fffb;
    font-family: 'Satoshi-Medium';
  }
  .management-wrapper .founder .name-background .information {
    display:inline-block;
    margin-bottom: 24px;
    padding-bottom:24px;
    border-bottom:1px solid rgba(0,0,0, .2);
    opacity:0;
    transition:.5s .25s cubic-bezier(.17,.67,.5,1.03);
    color:#ffffff;
    font-family: 'Satoshi-Medium';
    font-size: 17px;
  }
  .management-wrapper .founder:hover .name-background .information, .founder:hover .name-background .information {
    opacity:1;
  }

  .vp {
    position:absolute;
    left:50%;
    top:50%;
    width:350px;
    height:350px;
    transform:translate(-52%, -50%);
    border-radius:3px;
    box-shadow:0 1px 4px rgba(0,0,0,.3);
    overflow:hidden;
  }
  .vp .thumb {
    width:auto;
    height:460px;
    background: url('../images/Sripad.webp') no-repeat center;
    background-size:cover;
    border-radius:3px;
  }
  .vp .name-background {
    width:auto;
    height:350px;
    position:relative;
    padding:14px 24px;
    background:#166592;
    opacity : 0.7;
    backdrop-filter: blur(10px);
    transition:.4s .15s cubic-bezier(.17,.67,.5,1.03);
  }
  .vp .name-background .name {
    position:relative;
    margin: 10px 0;
    letter-spacing: 3px;
    color:#ffffff;
    font-family: 'Satoshi-Medium';
    font-size: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 0px #4E7781;
  }

  .vp:hover .name-background {
    transform:translateY(-460px);
  }

  .vp .name-background .role {
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .85rem;
    color:#b7fffb;
    font-family: 'Satoshi-Medium';
  }
  .vp .name-background .information {
    display:inline-block;
    margin-bottom: 24px;
    padding-bottom:24px;
    border-bottom:1px solid rgba(0,0,0, .2);
    opacity:0;
    transition:.5s .25s cubic-bezier(.17,.67,.5,1.03);
    color:#ffffff;
    font-family: 'Satoshi-Medium';
    font-size: 17px;
  }
  
  .vp:hover .name-background .information, .vp:hover .name-background .information {
    opacity:1;
  }

  .director {
    position:absolute;
    left:80%;
    top:50%;
    width:350px;
    height:350px;
    transform:translate(-50%, -50%);
    border-radius:3px;
    box-shadow:0 1px 4px rgba(0,0,0,.3);
    overflow:hidden;
  }
  .director .thumb {
    width:auto;
    height:460px;
    background: url('../images/Srini.webp') no-repeat center;
    background-size:cover;
    border-radius:3px;
  }
  .director .name-background {
    width:auto;
    height:350px;
    position:relative;
    padding:14px 24px;
    background:#166592;
    opacity : 0.7;
    backdrop-filter: blur(10px);
    transition:.4s .15s cubic-bezier(.17,.67,.5,1.03);
  }
  .director .name-background .name {
    position:relative;
    margin: 10px 0;
    letter-spacing: 3px;
    color:#ffffff;
    font-family: 'Satoshi-Medium';
    font-size: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 0px #4E7781;
  }

  .director:hover .name-background {
    transform:translateY(-460px);
  }

  .director .name-background .role {
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .85rem;
    color:#b7fffb;
    font-family: 'Satoshi-Medium';
  }
  .director .name-background .information {
    display:inline-block;
    margin-bottom: 24px;
    padding-bottom:24px;
    border-bottom:1px solid rgba(0,0,0, .2);
    transition:.5s .25s cubic-bezier(.17,.67,.5,1.03);
    color:#ffffff;
    font-family: 'Satoshi-Medium';
    font-size: 17px;
  }
  
  .director:hover .name-background .information, .director:hover .name-background .information {
    opacity:1;
  }

  /* Management css end*/

/* contact us start */

.contactUsTitle{
  font-family: 'Satoshi-Bold';
  font-size: var(--fs-xx-large);
  color: var(--black);
  /* margin: 0% 0% 0% 4%; */
  padding-bottom: 3%;
  /* padding-left: 4%; */
}
.contactDetails div {
  display: flex;
} 
.contactDetails p {
  
  color: white !important ;
}
.contactDetails img {
  width: 7%;
  height: 1%;
  padding: 5px 15px 0px 0px;
}
.pingUsCard {
  box-shadow: 0px 1px 10px 0px  rgba(0, 0, 0, 0.3);
  background-color: white;
  border-radius: 15px;
}
.pingUsImg{
  width: 5%;
}
.pingUsContainer {
  padding:30px 30px;

}
.pingUsBox{
  padding-left: 4.8%;
  /* padding-bottom: 5%; */
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.inputFields{
  width: 100%;
  background-color: #E6EFFB;
  margin-top: 5%;
  border-radius: 5px;
  border: none;
  padding: 2% 0% 3% 9%;
}
.inputFields::placeholder {
  color: #306677;
}

.pingUsSubmit{
  background-color: #58a4eb;
  border-radius: 5px;
  border: none;
  color: white;
  padding: 7px 40px 7px 40px;
}
.icon {
  position: absolute;
  top: 62%;
  left: 10px;
  transform: translateY(-50%);
  width: 17px;
}

.submitButton{
  display: flex;
  justify-content: end;
  padding: 35px 0px 20px 0px;
}

.addressSection{
  margin: 0px 0px 25px 0px;
  /* height: 144px; */
  border-radius: 10px;
  /* background-image: url('../images/UsBackground.jpg'); */
  display: flex;
}
.pingUsSection{
  display: flex;
  flex-wrap: wrap;
}

.addressImage{
  padding: 0px 3px 0px 32px;
  color: white;
}
.contactDetails > p{
  color: white;
  padding-bottom: 10px;
}
.contactDetails{
  place-self: center;
}
.city{
  display: flex;
  align-items: center;
  justify-content: center;
}

.usaImg{
  background-image: url(../images/USA.webp);
}
.indiaImg{
  background-image: url(../images/INDIA.webp);
}
.dubaiImg{
  background-image: url(../images/DUBAI.webp);
}

.user-input-container{
  position: relative;
}

@media (min-width: 300px) and (max-width: 900px) {
  .contactDetails img{
    width: 14%;
    height: 1%;
    padding: 5px 15px 0px 0px;
  }
}

@media (min-width: 430px) and (max-width: 1024px) { 
  .flex-container {
    display: flex;
    flex-wrap: wrap;
    background-color: #001E32;
    justify-content: space-between;
}


  .flex-container > div {
    width: auto;
}
}

@media (max-width: 480px) {
   .list-title{
    margin-bottom: 8%;
    width: 108%;
    line-height: normal;
   }
  .flex-container > div {
    width: 30%;
}
.footer-image {
  width: 120px !important;
}
.footer-container {
  display: flex;
  background-color: #001421;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
}
.footer-container > div{
  width: auto !important;
}
.footer{
  height: auto;
}
.text-cont, .img-cont{
  padding: 0;
}
}

#description, #secondDescription{
  font-family: 'Satoshi-Regular';
  font-size: 18px;
}

/* CSS for popups */
.pop-up {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.popup-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
}
.close-btn {
  color: black;
  font-size: 25px;
  position: absolute;
  top: 170px;
  right: 473px;
}
.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.dt-list{
  padding-left: 40px;
}

.background-logo{
  position: relative;
  overflow-x: clip;
}
.img-container{
  position: relative;
  overflow: hidden;
  img{
      transition: transform 0.3s ease;
  }
  img:hover{
      transform: scale(1.1);
      transition: transform 0.3s ease;
  }
}

.story {
  position: relative;
  margin: 5% 0;
  .story-container{
    overflow: hidden;
    padding: 0 20px;
    a {
      display: flex;
      flex-direction: column;
      width: 100%;
    }
  }
  .disabled-carousel{
    justify-content: center;
    display: flex;
    gap: 15px;
    a{
      max-width: 426px;
      flex-direction: column;
    }
  } 
  
}


.owl-stage{
  display: flex;
  column-gap: 20px;
}
.owl-stage-outer{
  overflow: hidden;
}

.owl-dots{
  display: none;
}
.owl-nav{
  display: flex;
  position: absolute;
  top: 50%;
  left: 1%;
  right: 1%;
  z-index: 1;
  transform: translateY(-50%);
  button{
    border: unset;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 28px 0 black;
  }
  .owl-prev{
    position: absolute;
    left: 0;
  }
  .owl-next{
    position: absolute;
    right: 0;
  }
}

@media (max-width:450px){
  .text-cont{
    padding: 0 !important;
  }
  .disabled-carousel{
    flex-direction: column;
  }
}

.hide{
  display: none !important;
}

.whatsapp-button {
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  position: fixed;
  bottom: 65px;
  right: 0;
  width: 8%;
  z-index: 99;
}

.faqList{
  padding-left: 25px;
}
.descList{
  padding-left: 18px;
}

.hero-container, .second-container, .third-container, .last-container{
  margin: 0 11%;
}