@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

@import url('../style.css');

/*--------------------------------------------------------------
# Font & Color Variables 
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter", serif;
  --heading-font: "Sora", serif;
  --nav-font: "Inter", serif;
  --btn-font: "Manrope", serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #6C7C8C; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #18212B; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0060ff; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-color-900: #0060ff;
  --accent-color-1100: #0060ff;
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --grey-bg: #F8F9FA;  
  --light-bg: #F7F5FE;  
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #515E6B;  /* The default color of the main navmenu links */
  --nav-hover-color: #0060ff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0060ff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-y: visible;
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.color-accent-900 {
  color: var(--accent-color-900);
}
.dsilo-arrow-down {
  font-weight: 600;
}
.btn {
  font-family: var(--btn-font);
}
.btn-primary {
    color: var(--contrast-color);
    background: var(--accent-color);
    border-color: var(--accent-color);
    font-size: 16px;
    padding: 8px 16px;
    margin: 0;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-secondary {
    color: #18212B;
    background: var(--contrast-color);
    border-color: var(--contrast-color); 
    font-size: 16px;
    padding: 8px 16px;
    margin: 0;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-purple {
    color: #fff;
    background: var(--accent-color-900);
    border-color: var(--accent-color-900); 
    font-size: 16px;
    padding: 8px 16px;
    margin: 0;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-purple:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transition: 0.3s;
  color: #fff;
}
.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.btn-link {
  color: var(--accent-color-900);
  text-decoration: none;
}
.page-link {
  color: var(--accent-color);
}
.active>.page-link, .page-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.sec-padd {
  padding: 100px 0;
}

.sec-padd-top {
  padding-top: 100px;
}

.mt-100 {
  margin-top: 100px;
}
.mt-50 {
  margin-top: 50px;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color); 
  transition: all 0.5s;
  z-index: 997;
  padding-top: 30px;
}
.header .container-fluid { 
  padding: 0px 30px; 
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-contact {
    color: var(--nav-color); 
    font-weight: 500;
}
.header .btn-contact i {
        font-size: 14px;
    margin-right: 5px;
}
.header .btn-purple {
  font-weight: 500;
    margin-left: 15px;
} 

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.5);
  --nav-hover-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #32353a;
  --nav-color: #3a3939;
  --nav-hover-color: #e84545;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


.navmenu .dropdown ul li.menu-icon a {
      justify-content: left;
}
.menu-icon span {
    width: 30px;
    height: 30px;
    background: #F4F0FF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

 
/* Clear floats after the tab */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}


/*--------------------------------------------------------------
# Global CSS
--------------------------------------------------------------*/
.primary-heading { 
  font-size: 64px;
  font-weight: 600;
}
.secondary-heading { 
  font-size: 42px;
  font-weight: 600;
}
.heading-color { 
  color: var(--accent-color);
}
.heading-summary {
  font-size: 20px;
}
.radius-16 {
  border-radius: 16px;
}

/*--------------------------------------------------------------
# Hero Banner
--------------------------------------------------------------*/
section.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; 
    background-color: #f8f6fe;
    padding-top: 190px;
    padding-bottom: 70px;
    position: relative;
    overflow: hidden;
} 
.hero:before {
  content: '';
  background-image: linear-gradient(180deg, #0232b0 0%, #07172e54 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1;
}
.banner-content {
  margin-bottom: 70px
} 
.banner-content .btn {
    padding: 0px 30px;
    height: 52px;
    line-height: 51px;
    font-weight: 600;
    border-color: #D7C8FE;
}
.hero video {
  position: absolute;
  width: 100%;
}

/* how-it-work-inner */
.how-it-work-inner {
  background: #f5f7fd;
  padding: 120px 0 250px;
}
section.how-it-work-card {
  margin-top: -250px;
}
.how-it-work-card .card {
  box-shadow: 0 0.625rem 1.875rem 0 rgba(0, 0, 0, 0.05);
  padding-top: 30px;
  background: transparent;
}
.how-it-work-card .card_body {
  padding: 45px 40px;
  background-color: #fff;
}
.how-it-work-card .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: rgba(40, 91, 212, 0.1);
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .9s;
  -o-transition-duration: .9s;
  transition-duration: .9s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.how-it-work-card .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 6px;
  background-color: #285BD4;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .9s;
  -o-transition-duration: .9s;
  transition-duration: .9s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.how-it-work-card .card:hover::after {
  width: 100%;
}
.how-it-work-card .card i {
  color: #0060ff;
  font-size: 50px;
  filter: blur(0px);
  margin-bottom: 50px;
  position: relative;
}

.how-it-work-card .card i:after {
  content: '';
  background: #0060ff;
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: -1;
  left: 10px;
  top: -12px;
  filter: blur(32px);
  opacity: 0.9;
  border-radius: 50px;
}
.how-it-work-card .card .card-title {
  color: #142149;
  font-size: 22px;
}
.how-it-work-card .card p {
  color: #5e7290;
}


/* about us sec */
.about_us_sec {
  padding: 250px 0;
    position: relative;
    overflow: hidden;
}
.about_us_sec:before {
  content: '';
  height: 100%;
  width: 100%;
  background-image: url(../img/pattern-7.png);
  background-repeat: no-repeat;
  background-position: center left;
  position: absolute;
  left: -230px;
  top: -40px;
}
.tp-about-2-bg-shape1 {
  position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(244, 244, 244, 0.9);
}
.about_us_sec .globe-bg {
  background-image: url(../img/globe.png);
  height: 100%;
  width: 100%; 
  padding: 50px 0px;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.about_us_sec .globe-bg .pattern-layer {
  position: absolute;
  left: -70px;
  top: -150px;
  width: 745px;
  height: 732px;
  background-repeat: no-repeat;
  animation: rotate180 5s linear infinite;
}
@keyframes rotate180 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
.image-outer {
  z-index: 1;
  position: absolute;
  width: 300px;
  height: 300px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}
.image-outer img {
  width: 100%;
}
.sub-content {
  color: #5c30fd;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 18px;
  position: relative;
  background-color: #fff;
  box-shadow: 0 10px 60px rgba(92, 48, 253, .2);
  padding: 6px 12px;
  border-radius: 10px;
}
.sub-content img {
  margin-right: 10px;
  animation: icon-animation 1.5s ease-in-out infinite;
}
@keyframes icon-animation {
  0% {
      transform: rotate(0deg)
  }

  20%,32%,44%,56%,68% {
      transform: rotate(0deg)
  }

  23%,35%,47%,59%,71% {
      transform: rotate(15deg)
  }

  26%,38%,50%,62%,74% {
      transform: rotate(0deg)
  }

  29%,41%,53%,65%,77% {
      transform: rotate(-15deg)
  }

  80% {
      transform: rotate(0deg)
  }
}


/* services and products */
.services_products_sec {
  position: relative;
  padding: 150px 0px 250px;
  background-color: #141d38;
  background-image: url(../img/pattern-2.png);
  background-repeat: no-repeat;
  background-position: right -120px;
}
.services_products_sec .card {
  position: relative;
  overflow: hidden;
  padding: 45px 45px;
  border-radius: 6px;
  background-color: #fff;
}
.services_products_sec .card:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 50%;
  opacity: 0;
  background-color: #141d38;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease; 
}
.services_products_sec .card:hover::before {
  height: 100%;
  opacity: 1;
}
.services_products_sec .card h3 {
  font-size: 18px;
}
.services_products_sec .card svg {
  fill: #0060ff;
  width: 70px;
  margin-bottom: 20px;
}
.services_products_sec .card:hover * {
  color: #fff;
}
.services_products_sec .owl-carousel button.owl-next, .services_products_sec .owl-carousel button.owl-prev {
  position: absolute;
  top: 35%;
  width: 50px;
  height: 50px;
  background: #0060ff;
  color: #fff;
  border-radius: 4px;
  font-size: 32px;
}
.services_products_sec .owl-carousel button.owl-prev {
  left: -60px;
}
.services_products_sec .owl-carousel button.owl-next {
  right: -60px;
}


/* Market Segments */
.market_segments_sec {
  margin-top: -170px;
}
.market_segments_sec .card {
  position: relative;
  overflow: hidden;
  padding: 45px 45px 30px;
  border-radius: 6px;
  background-color: #fff;
  border: 0;
  box-shadow: 0 0.625rem 1.875rem 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}
.market_segments_sec .card h3 {
  font-size: 18px;
}
.market_segments_sec .card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #5e7290;
}
.market_segments_sec .card i {
  color: #0060ff;
  width: 70px;
  font-size: 65px;
  margin-bottom: 20px;
}
.market_segments_sec .card .btn-link {
  font-size: 14px;
}
.market_segments_sec .card .btn-link i {
  font-size: 14px;
}
.market_segments_sec .upper-box {
  position: relative;
  text-align: center;
  border-radius: 15px;
  margin-left: -115px;
  margin-right: -115px;
  padding: 100px 20px 180px;
  background-color: #0060ff;
}
.market_segments_sec .upper-box .icon-one {
  position: absolute;
  left: 5%;
  bottom: 10%;
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  animation: rotate190 5s linear infinite;
}
.market_segments_sec .upper-box .icon-two {
  position: absolute;
  left: 38%;
  top: 10%;
  width: 99px;
  height: 119px;
  background-repeat: no-repeat;
  animation: rotate190 5s linear infinite;
}
.market_segments_sec .upper-box .icon-three {
  position: absolute;
  right: 5%;
  bottom: 15%;
  width: 170px;
  height: 170px;
  background-repeat: no-repeat;
  animation: rotate190 5s linear infinite;
} 
 
@keyframes rotate190 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
.market_segments_sec .inner-container {
  margin-top: -170px;
}
.market_segments_sec .inner-container .card:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 50%;
  opacity: 0;
  background-color: #141d38;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
}
.market_segments_sec .inner-container .card:hover::before {
  height: 100%;
  opacity: 1;
}
.market_segments_sec .inner-container .shape-one {
  content: '';
  width: 250px;
  height: 250px;
  background: #0060ff;
  border-radius: 50%;
  position: absolute;
  top: -120px;
  opacity: 0.4;
  right: -120px;
  transform: scale(0);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
}
.market_segments_sec .inner-container .shape-two {
  content: '';
  width: 373px;
  height: 373px;
  background: #0060ff;
  border-radius: 50%;
  position: absolute;
  top: -180px;
  right: -180px;
  z-index: 1;
  opacity: 0;
  transform: scale(0);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
}
.market_segments_sec .inner-container .card:hover .shape-one {
  transform: scale(1);
  webkit-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  transition-delay: 300ms;
}
.market_segments_sec .inner-container .card:hover .shape-two {
  opacity: 0.4;
  transform: scale(1);
  webkit-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  transition-delay: 600ms;
}
.market_segments_sec .inner-container .card:hover * {
  color: #fff;
}
 

/* Our Work */
.our_work {
  margin: 140px 0 100px; 
    position: relative;
}
.tp-service-2__shape {
  position: absolute;
    top: -145px;
    left: 0;
    width: 100%;
    z-index: -1;
}
.our_work .secondary-heading {
  font-size: 60px;
  margin-top: 70px;
}
.our_work .item-wrapper {
  min-height: 280px;
  width: 100%;
}
.our_work .item-wrapper .item {
  background: rgba(255, 255, 255, 0.3);
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 30px 30px rgba(1, 10, 10, 0.1), inset 0px 0px 0.5px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  position: relative;
  height: 280px;
  width: 100%;
  padding: 50px 30px 45px;
  transition: 0.3s;
}
.our_work .item-wrapper .item-wrapper_text {
  transform: translateY(30px);
  transition: 0.3s;
}
.our_work .item-wrapper:hover .item-wrapper_text {
  transform: translateY(0px);
  transition: 0.3s;
}
.our_work .item-wrapper .item-wrapper_title {
  font-weight: 600;
  font-size: 40px;
  line-height: 16px;
  color: #000229; 
  padding-bottom: 0;
  display: block;
  margin-bottom: 20px;
}
.our_work .item-wrapper .item-wrapper_title_sm {
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #000229; 
  padding-bottom: 0;
  margin-bottom: 11px;
}
.item-wrapper-bg-shape {
  background: linear-gradient(41.25deg, #B2D6F8 25.09%, #81E0F5 94.14%);
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 20px;
  height: 99%;
  width: 100%;
  transform: rotate(-10deg);
  z-index: -1;
  transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
.tp-service-2__color-2 {
  background: linear-gradient(180deg, #B0F248 -9.62%, #6DD18A 100%);
}
.tp-service-2__color-3 {
  background: linear-gradient(24.55deg, #FF94C7 22.06%, #FFDBBA 92.53%);
}
.our_work .item-wrapper:hover .item-wrapper-bg-shape {
  transform: rotate(0);
}

/* Clients
------------------------------*/
.client-logos {
  margin: 7rem 0 0;
}
.client-logos p {
  color: #222;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  z-index: 1;
  position: relative;
  width: max-content;
  margin: 0 auto -10px;
  padding: 0 40px;
}
.intro-logos_oh {
  display: flex;
  overflow: hidden;
    padding: 3rem;
    border-top: 1px solid #EEEFF4;
    max-width: 1320px;
    margin: 0 auto;
}

.intro-logos_w {
  flex-flow: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  animation: logoloop 90s linear infinite;
}

.intro-logos_w img {
  /* filter: invert(1); */
  width: 100%;
  height: 2rem;
  flex: 1;
  margin-left: 2rem;
  margin-right: 2rem;
  display: block;
}

@keyframes logoloop {
  0% {
      transform: translateX(0%);
  }

  100% {
      transform: translateX(-100%);
  }
}

  


/*************** solutions-sec ***************/
.solutions-sec {
    margin: 100px 16px;
    background: url(../img/noise-bg.png);
    background: url(../img/project-2-bg.jpg);
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    border-radius: 30px;
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}
.solutions-sec:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(../img/cube.svg);
    background-repeat: no-repeat;
    width: 259px;
    height: 187px;
}
.solutions-sec .tab_body {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.0901960784), rgba(255, 255, 255, 0));
  padding: 15px;
    border-radius: 32px;
    margin-top: 24px; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.solutions-sec .nav-tabs {
    border: 0;
    background: rgb(255 255 255 / 4%);
    border-radius: 40px;
    max-width: 876px;
    margin: 0 auto;
}
.solutions-sec .nav-tabs .nav-link {
  color: #f8f9fa8c;
    padding: 1.2rem 1rem;
    position: relative;
    font-weight: 500;
}
.solutions-sec .nav-tabs .nav-item.show .nav-link, 
.solutions-sec .nav-tabs .nav-link.active{
  background: transparent;
  border-color: transparent;
  color: #fff;
}
.solutions-sec .nav-tabs .nav-link:focus, 
.solutions-sec .nav-tabs .nav-link:hover {
    isolation: isolate;
    border-color: transparent;
    color: #fff;
} 
.solutions-sec .nav-tabs .nav-link:before {
    content: '';
    height: 1px;
    background: white;
    width: 0px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 100%;
    margin-top: -14px;
    transition: width 0.3s ease;
}
.solutions-sec .nav-tabs .nav-link.active:before,
.solutions-sec .nav-tabs .nav-link:hover:before {
  width: 100px;
  transition: width 0.3s ease;
} 
.solutions-sec .nav-tabs .nav-link:hover:after,
.solutions-sec .nav-tabs .nav-link.active:after {
    content: '';
    height: 26px;
    width: 130px;
    display: block;
    background: #A9CCFD;
    filter: none;
    filter: blur(36px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    position: absolute;
    margin-top: -1.3rem;
}

.solutions-sec .defalut-list li p {
  color: #E5DCFE;
  font-size: 12px;
  line-height: 16px;
}
.solutions-sec .img-box {
  background-image: linear-gradient(134deg, rgba(0, 0, 0, 0.431372549), rgba(0, 0, 0, 0.1215686275));
  padding: 10px 0 0 10px;
  border-radius: 10px 10px 0 0;
}


 
/*************** About page ***************/
.inner-banner {
  min-height: 320px;
  display: flex;
  align-items: center; 
  background-image: radial-gradient(#dad8e0 2px, transparent 2px);
  background-size: 32px 32px;
  background-color: #f8f6fe;
  margin-top: 90px;
}
.inner-banner2 {
  align-items: inherit; 
  background: var(--accent-color-900);
}  
.about_us_banner {
  position: relative; 
  overflow: hidden;
  background-color: #141d38;
  background-image: url(../img/pattern-16.png);
  background-repeat: no-repeat;
  background-size: inherit;
  background-position: center top;
}
.why_choose_about {
  background-image: url(../img/3.jpg);
  position: relative;
  z-index: 0;
}
.why_choose_about:before {
  content: '';
  background-color: rgba(0, 96, 255, 0.70);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.defalut-list {
  padding: 0;
  list-style: none;
}
.defalut-list li {
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 20px;
    border-radius: 12px;
    background: var(--grey-bg);
    margin-bottom: 20px;
}
.defalut-list .list-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--accent-color-900);
    display: flex;
    align-items: center;
    justify-content: center;
}
.defalut-list-2 li { 
    padding: 15px 0;
    background: #fff;
    margin-bottom: 0px;
}
.defalut-list-2 .list-icon {
  background: var(--grey-bg);
}
.locations-area {
  margin: 7rem 0 0;
}
.locations-area-bg {
  background-image: url(../img/integration-bg.jpg);
  padding: 60px 0px;
  margin-bottom: 230px;
  border-radius: 30px;
}
.locations-area h2 {
  color: #000229;
  font-size: 58px;
  font-weight: 600 
}
.location-intro {
  display: flex;
  overflow: hidden;
    padding: 1rem; 
    max-width: 1320px;
    margin: 0 auto;
}

.location-col {
  flex-flow: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.location-left .location-col {
  animation: logoloop 60s linear infinite;
}
.location-right .location-col {
  animation: logoloops 60s linear infinite;
}

.location-title {
  min-width: 250px;
  background-color: #fff;
    box-shadow: 0 1px 3px rgba(3, 8, 24, .1);
    border-radius: 100px;
    padding: 15px;
    margin: 0 2rem;
    display: flex;
    align-items: center; 
    font-size: 20px;
    color: #000;
}
.location-title span {
  background: rgb(0 109 253 / 10%);
  width: 60px;
  height: 60px; 
  border-radius: 100%;
  display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.location-title span i {
  color: #006dfd;
  font-size: 30px;
}
.location-col .location-title:nth-child(2) span {
  background:  rgb(148 192 73 / 10%);
}
.location-col .location-title:nth-child(2) span i {
  color: #94c049;
}
.location-col .location-title:nth-child(3) span {
  background:  rgb(255 75 0 / 10%);
}
.location-col .location-title:nth-child(3) span i {
  color: #ff4b00;
}
.location-col .location-title:nth-child(4) span {
  background:  rgb(253 221 77 / 10%);
}
.location-col .location-title:nth-child(4) span i {
  color: #fddd4d;
}
.location-col .location-title:nth-child(5) span {
  background:  rgb(77 26 73 / 10%);
}
.location-col .location-title:nth-child(5) span i {
  color: #4d1a49;
}
.location-col .location-title:nth-child(6) span {
  background:  rgb(23 32 48 / 10%);
}
.location-col .location-title:nth-child(6) span i {
  color: #172030;
}
.location-col .location-title:nth-child(7) span {
  background:  rgb(76 175 80 / 10%);
}
.location-col .location-title:nth-child(7) span i {
  color: #4CAF50;
}
.location-col .location-title:nth-child(8) span {
  background:  rgb(0 188 212 / 10%);
}
.location-col .location-title:nth-child(8) span i {
  color: #00BCD4;
}

@keyframes logoloop {
  0% {
      transform: translateX(0%);
  }

  100% {
      transform: translateX(-100%);
  }
} 
@keyframes logoloops {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
} 
 
/*************** Products Page ***************/
.main_products_top {
  padding: 100px 0;
}
.main_products_top img {
  border-radius: 16px;
  margin-right: 2rem;
}
.main_products_top h2 {
  font-size: 40px;
}
.list-highlight {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
} 
.list-highlight li {
  width: 48%;
  background: #f1f1f1;
  margin-bottom: 15px;
  padding: 10px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  color: #353333;
  font-size: 14px;
  font-weight: 500;
}
.list-highlight li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  color: #fff;
  margin-right: 8px;
  font-size: 1em;
  background: var(--accent-color);
  height: 20px;
  min-width: 20px;
  width: 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our_main_services {
  background-image: url(../img/3.jpg);
  position: relative;
  z-index: 0;
}
.our_main_services:before {
  content: '';
  background-color: rgba(0, 96, 255, 0.70);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.our_main_services .card {
  transition: .3s;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.our_main_services .inner-card h4 {
  font-size: 22px;
}
.our_main_services .inner-card {
  box-shadow: 0 1px 2px rgba(32, 33, 36, .1);
  border-radius: 16px 0 0 16px;
  padding: 40px;
  background-color: #fff;
  overflow: hidden;
  transition: .3s;
  text-align: center;
  min-height: 300px;
  border-bottom: 1px solid #eeeeeea6;
}
.our_main_services .inner-card.tp-feature-five-item-2 {
  border-radius: 0;
}
.our_main_services .card .inner-card.tp-feature-five-item-1 {
  border-radius: 16px 0px 0px 0;
}
.our_main_services .card .inner-card.tp-feature-five-item-4 {
  border-radius: 0 16px 0px 0;
}
.our_main_services .card .inner-card.tp-feature-five-item-5 {
  border-radius: 0 0 0px 16px;
}
.our_main_services .card .inner-card.tp-feature-five-item-8 {
  border-radius: 0 0 16px 0px;
}
.our_main_services .card:hover {
  box-shadow: 0 30px 60px rgba(32, 33, 36, .2);
  border-radius: 16px;
  position: relative;
  z-index: 9;
}
.our_main_services .card .inner-card:hover {
  position: relative;
  z-index: 5;
  transform: scale(1.1);
  border-radius: 16px;
  box-shadow: none;
}
.our_main_services .card .icon-col {
  height: 85px;
  width: 85px;
  line-height: 85px;
  border-radius: 50%;
  text-align: center;
  display: flex;
    justify-content: center;
    align-items: center;
  margin: 0 auto 40px;
  position: relative;
  z-index: 0;
}

.our_main_services .card .icon-col i {
  color: #fff;
  font-size: 40px;
}
.tp-feature-five-shape-color {
  height: 100%;
  width: 100%;
  background-color: #ff7a59;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
  z-index: -1;
}
.our_main_services .inner-card:hover .tp-feature-five-shape-color {
  transform: scale(4.2);
    top: -145%;
} 
.tp-feature-five-shape-color-2 {
  background: #FF6B6B;
}
.tp-feature-five-shape-color-3 {
  background: #4D96FF;
}
.tp-feature-five-shape-color-4 {
  background: #C65FFC;
}
.tp-feature-five-shape-color-5 {
  background: #FCA311;
}
.tp-feature-five-shape-color-6 {
  background: #FF5E57;
}
.tp-feature-five-shape-color-7 {
  background: #00C896;
}
.tp-feature-five-shape-color-8 {
  background: #5D62F2;
}
.our_main_products {
  padding: 100px 0;
}
.our_main_products .card {
  margin-bottom: 30px;
  height: calc(100% - 30px);
  box-shadow: 0 0.625rem 1.875rem 0 rgba(0, 0, 0, 0.05);
    border: 0;
}
.our_main_products .img_card {
  padding: 10px;
}
.our_main_products .img_card img {
  border-radius: 6px;
  height: 240px;
  object-fit: cover;
  object-position: center;
}
.our_main_products .card_content {
  padding: 20px;
}
.our_main_products .card h4 {
  color: #142149;
  font-size: 21px;
}

.our_main_products .card p {
  color: #5e7290;
  font-size: 16px;
}

/*************** Contact Us Page ***************/
.inner-banner .primary-heading {
font-size: 40px; 
font-weight: 700;
}
.inner-banner .heading-summary { 
color: var(--nav-color);
}
.inner-banner .btn {
padding: 13px 22px;
}
.inner-banner .btn i {
margin-left: 8px;
}
.contact-us-page hr {
  margin: 50px 0;
}
label {
  color: var(--heading-color);
  font-size: 14px;
}
.form-control, .form-select {
    border-color: #E4E9EF;
    height: 46px;
    border-radius: 4px;
}
.contact-form .form-control, .form-select {
  padding-left: 44px;
}
textarea.form-control {
  height: auto;
  min-height: 156px;
  padding-top: 10px;
}
.contact-form i {
    top: 12px;
    left: 12px;
    font-size: 22px;
    color: #768798;
}
.form-control::placeholder {
  color: #768798;
}
.contact-form .btn-primary {
  background-color: #18212B;
  border-color: #18212B;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 20%);
  padding: 10px 16px;
}
   
/*************** faqs ***************/
.faqs {
  padding: 100px 0;
}
.ns-choose-images .image1 {
  margin-top: 230px;
}
.ns-choose-images img {
  border-radius: 15px;
}
.faqs .accordion-item {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
  margin-bottom: 30px;
  border-radius: 12px;
  border: 0;
}
.faqs .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: var(--accent-color);
}

/*************** Footer ***************/
footer {
    padding: 100px 0 0px;
    background: #202032;
    position: relative;
    background-image: linear-gradient(180deg, #0232b0 0%, #07172e54 100%);
    z-index: 0;
}
footer:before {
  content: '';
  background: url(../img/2.png);
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-position: center center;
  background-repeat: repeat;
  background-attachment: fixed;
  z-index: -1;
}
footer .btn {
    padding: 0px 18px;
    height: 42px;
    line-height: 41px;
} 
.footer-widget {
    margin: 0px 0 60px;
}
.footer-widget h3 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 25px;
} 
.footer-widget ul li a {
    font-size: 14px;
    color: #C7D2DD;
    margin-bottom: 15px;
    display: block;
}
.footer-copyright {
    margin-top: 50px;
    padding-top: 16px;
    background: #ffffff08;
} 
.footer-copyright li a {
  font-size: 14px;
    color: #C7D2DD;
}
.footer-social-icons li i {
    background: #fff;
    color: #08080C;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-size: 15px;
}
.header-txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.header-txt span {
  font-size: 32px;
  position: relative;
  color: #000;
  font-weight: 700;
}
.header-txt span:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  background: #0060ff;
  bottom: -3px;
  left: 0;
}