/*
    Theme Name: cosmonautgroup
  Theme URL : https://cosmonautgroup.com/
    Author: cosmonaut group
    Author URI: https://cosmonautgroup.com/
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1400px;
    }
}
:root {
 --primary-color: #003366;
 --primaryfont:  "Inter", sans-serif;
}

body {
  font-family: var(--primaryfont);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #65758b;
  overflow-x: hidden;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #0e141b;
}
p{
  line-height: 22px;
}
main#main_wrapper {
  padding-top: 0px;
}

.text-primary {
  color: var(--primary-color) !important;
}

.slick-next, .slick-prev {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #e1e7ef;
    line-height: 45px;
  transition:0.5s ease;
}
.slick-next {
    right: -40px;
}
.slick-prev {
    left: -40px;
}
.slick-next:before, .slick-prev:before {
  font-family: monospace;
}

.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
    color: #fff !important;
    outline: 0;
    background: #0066cc;
}
.slick-prev:hover:before,
.slick-next:hover:before {
  color: #fff !important; /* Change arrow color on hover */
  transition: color 0.3s ease;
}


input::placeholder, textarea::placeholder {
      color: #65758b;
}

/* For Firefox */
input:-moz-placeholder, textarea:-moz-placeholder {
      color: #65758b;
}

/* For Internet Explorer 10–11 */
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
      color: #65758b;
}


.top-header {
  background-color: #0e1321; /* dark navy */
  color: white;
  font-size: 14px;
  padding: 8px 0;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-header-left a {
  color: #fff;
  transition: all 0.15s ease-in-out;
}
.top-header-left span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
}

.top-header-left i {
  margin-right: 6px;
  color: #fff;
  transition: all 0.15s ease-in-out;
}

.top-header-right {
  font-weight: 500;
}
.top-header-right a {
  color: #fff;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
.top-header-left a:hover, 
.top-header-left a:hover i,
.top-header-right a:hover { color: #bfbfbf;}

/* Header Start */
.header-mn .header-wrapper, .header-mn .header-menu-wrapper, .header-mn .main-nav .main-nav-list{
  display:flex;
}

.main-nav-list {
      padding: 0;
    margin: 0;
}

.main-nav-list li, .schedule-a-call {
  /*padding: 10px;*/
      list-style: none;
}


.header {
  background: #f3f5f8;
  padding: 15px 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  position: fixed;
    width: 100%;
    z-index: 99;
}

.header .container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  font-weight: bold;
  font-size: 20px;
  color: #003087;
  display: flex;
  align-items: center;
  gap: 6px;
      width: 110px;
      z-index: 99;
}
.header .logo img {
      width: 100%;
    height: 100%;
}

.header .navbar .menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-bottom:0px;
}

.header .navbar .menu li {
  position: relative;
}

.header .submenu li a {
  padding: 8px 8px !important;
}

.header .navbar  ul.menu li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  padding: 8px 0px;
  transition: color 0.3s;
}

.header .navbar  ul.menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.header .navbar  ul.menu li a:hover::after {
  transform: scaleX(1);
}

.header .navbar  ul.menu li a:hover {
  color: var(--primary-color);
}
.header .navbar ul.menu li a:hover  i{
  transform: rotate(180deg);
}
.header .navbar ul.submenu li a:hover {
  background: #f1f5f980;
}
.header .navbar ul.submenu li a:hover::after {
  transform: scaleX(0);
}


.header .dropdown .arrow i{
  transition: transform 0.3s ease;
}
.header .dropdown .arrow {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.header .submenu {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  top: 23px;
  left: -2px;
  z-index: 999;
  padding: 10px 0px;
  min-width: 180px;
      border: 1px solid #e1e7ef;
}
.header .dropdown:hover .submenu a{
    padding: 10px 10px;
}

.header .submenu li {
  padding: 0;
}

.header .submenu a {
  display: block;
  padding: 10px 20px;
  color: #111;
  font-size: 14px;
}

.header .dropdown:hover .submenu {
  display: block;
}

.header .menu-actions {
  display: flex;
  gap: 10px;
}

.header .btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}

.menu-actions .btn.outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
  transition: all 0.5s ease-in-out;
}

.menu-actions .btn.outline:hover {
  background-color: var(--primary-color);
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.menu-actions .btn.filled {
  background: linear-gradient(135deg, #0e141b, #036, #06c);
  color: #fff;
  transition: background 0.7s ease, color 0.5s ease;
}

/* .menu-actions .btn.filled:hover {
  background-color: #003366e6;
  transition: all 0.3s ease;
} */
.menu-actions .btn.filled:hover {
    background: #ffffff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.header .navbar .menu li {
  list-style:none;
}



.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
}


.back-to-top {
  position: fixed;
  bottom: -100px;
  z-index: 9999;
  transform: rotate(90deg);
  right: -35px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: all 1s ease;
  cursor: pointer;
  mix-blend-mode: exclusion;
}

.back-to-top svg {
  isolation: isolate;
}

.back-to-top svg path {
  fill: #fff;
  transition: color .15s ease 0s;
  mix-blend-mode: multiply
}

.back-to-top span {
  margin: 0 0 0 6px;
  transition: color 0.25s ease-in-out;
    mix-blend-mode: multiply;
  font-size: 14px;
}

.back-to-top svg {
  margin: -2px 0
}

.back-to-top.active {
  bottom: 115px
}

.error-404-mn .error-404-sc {
    max-width: 500px;
    height: 80%;
    margin: auto;
    padding: 25px;
}
.error-404-mn .error-404-sc img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}
@media (max-width: 1199px) {
  .header .btn {
      padding: 8px 10px;
      font-size: 13px;
  }
  .header .navbar .menu a {
      font-size: 14px;
  }
  .header .navbar .menu {
      gap: 13px;
  }
}


@media (max-width: 991px) {
  .header .container {
    position: relative;
  }
  header.header .menu-toggle {
    display: block;
    position: absolute;
    right: 7px;
  }

   header.header .navbar {
    display: none;
    width: 100%;
  }

   header.header .navbar.active {
    display: block;
    width: 100%;
    position: absolute;
    top: 50px;
  }

   header.header .menu {
    flex-direction: column;
    background: #fff;
    width: 100%;
    padding: 10px 0;
  }

   header.header .menu li {
    padding: 10px 20px;
  }

   header.header .submenu {
    position: relative;
    padding-left: 20px;
  }

   header.header .menu-actions {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 0;
    margin-right: 35px;
  }
  .header .navbar .menu {
      gap: 0px;
  }
  header.header .submenu {
      position: relative;
      padding-left: 0px;
      margin-bottom: 20px;
  }
  header.header .submenu li {
      padding: 5px 15px !important;
  }
}

@keyframes stickyScale {
  from {
/*     opacity: 0; */
    transform: scaleY(0.9);
  }
  to {
/*     opacity: 1; */
    transform: scaleY(1);
  }
}

.header-mn.sticky  {
  animation: stickyScale 0.3s ease-out forwards;
}


@media (max-width: 767px) {
  .header .btn {
      padding: 6px 10px;
      font-size: 12px;
  }
  .top-header {
    display: none;
  }
}

@media (max-width: 479px) {
  header.header .menu-actions .profile-company {
      display: none;
  }
  .header {
      padding: 10px 0;
  }
  header.header .navbar.active {
      display: block;
      width: 100%;
      position: absolute;
      top: 39px;
      width: 100%;
      left: 0;
      right: 0;
  }

}

/* Header End */



/* New Dunamic Header S */
.header-mn {
    position: relative;
     position: sticky;
  top: -1px;
  z-index: 999; /* ensure it's above other content */
  background-color: rgba(255,255,255,0.982);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 10px 0px;
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.header-logo img {
    max-height: 60px;
}


.main-nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav-list li {
    position: relative;
}
.main-nav-list > li > a {
    text-decoration: none;
    padding: 0px 0px;
    color: #0e141b;
    display: block;
    font-weight: 500;
}
.main-nav-list li:hover > a {
    color: var(--primary-color);
}
.main-nav-list > li > a:not([href]):not([class]){
    color: #0e141b;
    cursor:pointer;
}
.main-nav-list > li > a:not([href]):not([class]):hover{
    color: var(--primary-color);
}
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 1000;
}
.sub-menu li a {
    padding: 10px;
    display: block;
    color: #0e141b;
}

.sub-menu li a span {
  display: block;
  font-size: .875rem;
    line-height: 1.25rem;
        margin-top: .25rem;
        color: #65758b;
}

/* .menu-item-has-children:hover .sub-menu {
    display: block;
} */





.main-nav-list > li > a::after, .main-nav-list > li.current-menu-item > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.main-nav-list > li > a:hover::after, .main-nav-list > li.current-menu-item > a::after {
  transform: scaleX(1);
}

.main-nav-list > li > a:hover, .main-nav-list > li.current-menu-item > a::after {
  color: var(--primary-color);
}
.main-nav-list > li > a:hover  i{
  transform: rotate(180deg);
}


/* Sub-menu dropdown styling */
.main-nav-list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
/*   padding: 10px 0; */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 0;
  min-width: 180px;
  z-index: 1000;
}

/* Show submenu on hover */
/* .main-nav-list .menu-item-has-children:hover > .sub-menu {
  display: block;
} */

/* Submenu links */
.sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.5s ease;
	border-bottom: 1px solid #eee;
}
.sub-menu li:last-child a {
    border-bottom: none;
}
.sub-menu li.current-menu-item a{
  background-color: #f0f0f0;
}

.sub-menu li a:hover {
  background-color: #f0f0f0;
}


.main-nav-list .menu-item-has-children > a::before {
      content: "";
    display: inline-block;
    margin-right: 0;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    right: 0;
    border: solid #0e141b;
    border-width: 0 1px 1px 0;
    transform: translatey(-50%)rotate(45deg);
    transition: transform 0.3s ease;
    position: absolute;
    right: -12px;
    top: 50%;
}

.home-banner-section {
  position: relative;
  overflow: hidden;
  perspective: 1000px; /* enables 3D feel */
}
#particles-sec {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.bannerOn_point div,
.badge,
.banner-content h1,
.banner-content p,
.banner-buttons,
.stats,
.mouse-scroll {
  position: relative;
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
}

.section-title span {
    background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes dropBounce {
  0% {
    transform: translateY(-50px) scale(0.4);
    opacity: 0;
  }
  50% {
    transform: translateY(0) scale(1.25);
    opacity: 1;
    
  }
  70% {
    transform: translateY(-10px) scale(0.85);
  }
  85% {
    transform: translateY(0) scale(1.09);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* .icon-svg.animated {
  animation: dropBounce 0.8s ease-out forwards ;
} */

/* Rotate arrow on hover (optional) */
.main-nav-list .menu-item-has-children:hover > a::before {
  transform: rotate(-135deg);
}
.main-nav-list li.menu-item-has-children:hover a::after{
    transform: scaleX(0);
}
.main-nav-list .current-menu-ancestor a::after{
    display: inline-block ;
    color: var(--primary-color);
  transform: scaleX(1);
  transition: all 0.5s ease-in-out;
}
.single-career-page .link.link-secondary {display:flex; align-items:center; gap:15px; }
.single-career-page .link.link-secondary i{color:#002f6c; }
.single-career-page .link.link-secondary span{ font-weight:700;}
.single-career-page .current-openings-bottom .apply-btn{ margin-bottom: 30px;}
.single-career-page .overview {
    border-top: 1px solid #e1e8ed;
    padding: 30px 0;
}

.single-career-page .main-solution.main-solution-inner .overview .title{font-size:28px; margin-bottom:15px;}

.single-career-page .current-openings-bottom dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
}

.single-career-page .career_form_mn {
    padding: 24px;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
}
.single-career-page .career_form_mn .card-title {color: #000;margin-bottom:10px;font-size: 1.5rem;}
.single-career-page .career_form_mn #careersApplyFormAdditionalInfo {
    height: 150px;
}
.single-career-page .manager {
    display: flex;
    align-items: center;
    gap: 15px;
}
.single-career-page .manager .name {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.single-career-page .feature_image img{width: 90px; aspect-ratio:1; object-fit:cover; border-radius:50%;}

.single-career-page .career_form_mn input[type=submit] {
  background-color: #002b5c;
  color: white;
  border: none;
  padding: 10px 10px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s;
  width: 100%;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.single-career-page .career_form_mn  input[type=submit]:hover {
  background-color: #003b8c;
   transform: scale(1.05); 
  background-color: #0e3a65;
}
.single-career-page .career_form_mn p{position:relative;}
.single-career-page .career_form_mn .wpcf7-spinner{
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   transition: all 0.3s ease;
}

@media (min-width:1200px){
	.menu-item.active .sub-menu {
		display: block;
	}
	#humberg-mobile {
		display: none;
	}
	div#navbar {
		padding: 0;
	}
	.main-nav-list > li{
		display: flex;
		align-items: center;
		height: 62.4px;
	}
	.main-nav-list > li > a::after, .main-nav-list > li.current-menu-item > a::after {
		bottom: 15px;
	}
	.sub-menu{
		display:none;
	}
	.main-nav-list .sub-menu {
		display: none;}
	.main-nav {
		display: flex;
	}
	.main-nav-list .menu-item-has-children:hover > .sub-menu {
		scroll-behavior: smooth;   
	}
	.menu-item-has-children:hover .sub-menu {
		display: block;
	}
	.main-nav-list .menu-item-has-children span.dropdown-arrow{
		display:none;

	}
	.main-nav-list .sub-menu{
		padding: 0;
	}
	.menu-item-has-children .sub-menu{
		display: block; 
		opacity: 0;
		transform: translateY(10px)scaleY(0);
		transform-origin: top;
		transition: transform 0.3s ease-out, opacity 0.3s ease-out;
	}
	.menu-item-has-children:hover .sub-menu{
		opacity:1;
		transform: translateY(10px)scaleY(1);
	}
}
@media (max-width: 1199.98px) {
	
    .main-nav {
        width: 100%;
        padding: 10px 0;
        max-height: 0;
        overflow: hidden;
        position: absolute;
    transition: max-height 0.4s ease;
    }
    .main-nav-list {
        flex-direction: column;
        gap: 0;
    }
    .main-nav-list > li > a {
        padding: 10px 0px;
        position: relative;
        display: inline-table;
        margin-left: 20px;
    color: #ffffff;
    }
  .main-nav-list > li > a:not([href]):not([class]){
    color: #ffffff;
  }
  .main-nav-list > li > a, .main-nav-list > li > a:not([href]):not([class]):hover{
    color: #ffffff;
  }
    .sub-menu {
        position: static;
        border: none;
        padding-left: 15px;
    }
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 22px;
            position: absolute;
    right: 0;
    }
    .main-nav.active {
/*       display: block; */
      width: 100%;
      position: absolute;
      top: 39px;
      width: 100%;
      left: 0;
      right: 0;
      background: #fff;
      /* z-index: 99999; */
  }
  .header-mn .header-wrapper .menu-actions {
      margin-right: 40px;
  }
  .header-mn .main-nav .main-nav-list {
      display: block;
  }
  .main-nav.active {
/*         display: block; */
        width: 100%;
        max-width: 100%;
        background: #f3f3f3;
        z-index: 999999;
        position: fixed;
        top: 118px;
        padding-bottom: 25px;
      overflow-y: auto;
        max-height: calc(100vh - 110px);
      }
      .main-nav-list .menu-item-has-children > a::before {
        position: absolute;
        right: -10px;
        top: 20px;
     display:none;
    }
    .main-nav-list .sub-menu {
      left: 20px;
      position:static;
    }


  .main-nav-list .menu-item-has-children.open > .sub-menu{
    display:block;
  }

  .main-nav-list .menu-item-has-children span.dropdown-arrow{
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 10px;
    transition: transform 0.3s;
    color: #ffffff;
    cursor: pointer
  }
  .main-nav-list > li > a::after, .main-nav-list > li.current-menu-item > a::after{background-color: #ffffff; }
  .main-nav-list .menu-item-has-children.open .dropdown-arrow{
    transform: rotate(-180deg);
  }

  .header-wrapper #humberg-mobile {
    position: fixed;
    top: 83px;
    right: -320px;
    width: 320px;
    height: 100vh;
    z-index:99;
    background: linear-gradient(135deg, #0e141b, #036, #06c);
    box-shadow: 1px 1px 26px -16px #ffffff;
    transition: all 0.03s ease-in-out;
  }
  .header-wrapper #humberg-mobile  .main-nav{
    max-height:unset;
  }
  .main-nav-list .menu-item-has-children span.dropdown-arrow.active {
    transform: rotate(-180deg);
  }
  #navbar{
    display:none;
  }
  .main-nav-list .sub-menu li a{
    font-size:14px;
  }
  .main-nav-list .sub-menu{
    background: transparent;
    box-shadow: unset;
  }
  .main-nav-list .sub-menu li a{
    color:#ffffff;
    background-color: transparent;
  }
  .main-nav-list > li > a:hover, .main-nav-list > li.current-menu-item > a::after{
    background-color: transparent;
  }
  .main-nav-list li:hover > a {
    color: #9ecaee;
  }
  .sub-menu li a span{
    color: #f1f1f1;
    font-size: 12px;
            white-space: break-spaces;
  }
	
}
@media (max-width:991px){
  .single-career-page .main-solution.main-solution-inner .overview .title {
    font-size: 1.125rem;
  }
  .single-career-page .career_form_mn .card-title{
    font-size: 1.125rem;
  }
  .single-career-page .manager .name h6{
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .main-nav.active {
      top: 80px;
     max-height: calc(100vh - 70px);
    }
}

@media (max-width: 479px) {
  .header-mn .header-wrapper .menu-actions span.profile-company {
      display: none;
  }
}


/* New Dunamic Header E */


/* Footer Start */

footer .footer-element {
  display:flex !important;
}
.footer-logo {
      width: 40%;
  padding-right: 32px;
      color: #65758b;
}
.footer-logo .widget_media_image figure img {
  width:150px;
}
.footer-menu-main {
  width:60%;
      display: flex;
    justify-content: space-between;
}
.footer-main-section {
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid #e1e7ef80;
}
.footer-menu .menu {
  list-style:none;
      padding: 0;
}
.footer-menu .menu li {
  padding-top:5px;
  padding-bottom:5px;
}
.footer-menu .menu li a {
  text-decoration:none;
      color: #65758b;
  transition: all 0.5s ease-in-out;
}
.footer-menu .menu li a:hover {
  color: var(--primary-color);
}
.copy-right-text {
  color: #65758b;
}
.footer-legal-section .copyright_row {
    display: flex;
    justify-content: space-between;
      align-items: center;
    margin-top: 32px;
    border-top: 1px solid #e1e7ef80;
    padding-top: 32px;
}
.footer_social .wp-block-social-links {
  margin-bottom:0px;
}
.footer-social .wp-social-link {
  background-color:transparent !important;
}
.footer-social .wp-social-link a {
  color:#65758b !important;
}
.footer-logo .single-footer-widget {
  margin-bottom:20px;
  color: #c7c7c7;
  line-height: 1.25;
}

.footer-logo div#block-20, .footer-menu #block-23 .single-footer-widget {
    line-height: 28px;
    font-size: 14px;
}
.footer-logo .single-footer-widget i,.footer-menu .single-footer-widget i{
  color: var(--primary-color);
  transition:0.5s ease-in-out;  
}
.footer-logo a,
.footer-logo p , 
 .footer-menu .single-footer-widget a{
    color: #65758b;
    text-decoration: none;
    display:inline-flex;
    align-items:center;
    gap:5px;
  transition: all 0.5s ease-in-out;
  
}
.footer-logo .single-footer-widget i{width:15px; display:inline-flex; align-items:center; justify-content:flex-start;}
.footer-logo a:hover,
.footer-logo a:hover i, .footer-menu .single-footer-widget a:hover, .footer-menu .single-footer-widget a:hover i{
  color: #ffffff;
}
.footer-main-section{
  background-color: #2a2a2a;
  color: #ffffff;
}
.footer-title {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-menu .menu li a,
.footer-logo .single-footer-widget i,
.footer-logo a, 
.footer-logo p,
.footer-legal-section .copy-right-text,
 .footer-menu .single-footer-widget i, 
 .footer-menu .single-footer-widget a{
     color: #c7c7c7;
}
.footer-menu .menu li a:hover{
  color: #ffffff;
}
.copy-right-text a{
	color: #c7c7c7;
	text-decoration: none;
	font-weight:500;
	transition: all 0.15s ease-in-out;
}
.copy-right-text a:hover{
	color: #ffffff;
}
.footer-social .wp-social-link a
svg {
    fill: #c7c7c7 !important;
  transition: 0.5s ease-in-out;
}
.footer-social .wp-social-link a:hover svg{
  fill: #ffffff !important;
} 

.bottom-menu.footer-menu ul {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.bottom-menu.footer-menu ul {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.bottom-menu.footer-menu ul li:first-child {
    position: relative;
}

.bottom-menu.footer-menu ul li:first-child::after {
    content: "|";
	color: #c7c7c7;
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1440px) {
  .footer-main-section {
      padding-top: 3rem;
      padding-bottom: 1.5rem;
  }
}

@media (max-width: 1199px) {
  .footer-main-section {
      padding-top: 2rem;
      padding-bottom: 1.5rem;
  }
  .footer-menu .footer-title {
      font-size: 16px;
  }
  .footer-menu .menu li a {
      font-size: 14px;
  }
  .footer-menu .menu li {
      padding-top: 2px;
      padding-bottom: 2px;
  }
  .footer-logo .single-footer-widget {
      margin-bottom: 10px;
      font-size: 14px;
  }
  .footer-legal-section .copyright_row {
      margin-top: 20px;
      padding-top: 20px;
  }
  .copy-right-text {
      font-size: 14px;
  }
  .footer-social .wp-social-link a {
      padding: 0px;
  }
  .footer-social .wp-block-social-links .wp-social-link svg {
      height: 20px;
      width: 20px;
  }
}

@media (max-width: 991px) {
  .footer-menu-main {
      width: 65%;
  }
	.footer-legal-section .copyright_row{
		flex-direction:column;
		gap: 12px;
	}
  .footer-logo {
      width: 35%;
      padding-right: 20px;
  }
  .footer-menu .menu li a, .footer-logo .single-footer-widget {
      font-size: 13px;
  }
  .footer-logo div#block-20 {
      line-height: 23px;
      font-size: 12px;
  }
  .copy-right-text {
      font-size: 12px;
  }
  .wp-block-social-links, .wp-block-social-links.has-normal-icon-size {
      font-size: 10px;
  }
}

@media (max-width: 767px) {
  footer .footer-element {
      display: block !important;
  }
  .footer-main-section .footer-logo {
      width: 100%;
      padding-right: 0;
  }
  .footer-main-section .footer-menu-main {
      width: 100%;
      margin-top: 20px;
  }
  .footer-legal-section .copyright_row {
      margin-top: 10px;
      padding-top: 10px;
      display: block;
  }
  .footer_social , .footer-legal-section .bottom-menu{
      margin-top: 10px;
  }
  .footer-main-section {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
  }
  .footer-logo .widget_media_image figure img {
      width: 110px;
  }
  .footer-legal-section .copyright_row {
    text-align: center;
  }
  .footer_social .wp-block-social-links {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .footer-menu-main {
      display: block;
  }
  .footer-main-section .footer-menu-main {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      display: grid;
  }
  .footer-main-section .footer-menu-main .footer-menu{
    margin-bottom:15px;
  }
  .footer-menu .footer-title{
    margin-bottom:10px;
  }
}

/* Footer End */

/* Banner S */


.home-banner-section {
      background: linear-gradient(135deg, #0e141bf2, #003366e6, #0066ccd9);
    color: #fff;
    text-align: center;
    padding-top: 50px;
    position: relative;
    height: calc(100vh - 114px);
    padding-bottom: 50px;
    overflow: hidden;
        display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-banner-section .dot1 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 2%;
    background: #0066cc;
    position: absolute;
    left: 5%;
}
.home-banner-section .dot2 {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    top: 3%;
    background: var(--primary-color);
    position: absolute;
    right: 5%;
}
.home-banner-section .dot3 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    bottom: 35%;
    background: #0066cc;
    position: absolute;
    left: 5%;
}
.home-banner-section .dot4 {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    bottom: 30%;
    background: var(--primary-color);
    position: absolute;
    right: 5%;
}

.home-banner-section .dot5 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 42%;
    background: #0066cc;
    position: absolute;
    left: 45%;
}
.home-banner-section .dot6 {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    bottom: 30%;
    background: var(--primary-color);
    position: absolute;
    right: 35%;
}
.bannerOn_point div {
  animation: pulse 1.5s infinite ease-in-out;
}

.dot1 {animation-delay: 0s; }
.dot2 { animation-delay: 0.2s; }
.dot3 { animation-delay: 0.4s; }
.dot4 { animation-delay: 0.6s; }
.dot5 { animation-delay: 0.8s; }
.dot6 { animation-delay: 1s; }

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

.home-banner-section .banner-content {
  max-width: 70rem;
  margin: auto;
}

.home-banner-section .badge {
  display: inline-flex;
 align-items: center;   
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  color: #e1e7ef;
  margin-bottom: 20px;
  border: 1px solid #fff3;
}

.home-banner-section .badge img {
  margin-right: 5px;
}

.home-banner-section h1 {
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 4.5rem;
  line-height: 1.15;
  color: #fff;
}

.home-banner-section h1 span {
  color: #0a5ad1;
  display: block;   
}

.home-banner-section p {
  font-size: 16px;
  line-height: 24px;
  color: #cbd5e0;
  margin-bottom: 40px;
}

.home-banner-section .banner-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.home-banner-section .btn {
  padding: 6px 17px;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s ease;
}
@keyframes pulse-gap {
  0% {
    gap: 10px;
  }
  50% {
    gap: 7px;
  }
  100% {
    gap: 10px;
  }
}
.home-banner-section .btn.primary {
  background-color: #fff;
  color: #1a202c;
  
}
.icon-btn{
  display: flex;
  align-items: center;
  gap: 7px;
  width: 245px;
}
.home-banner-section .btn.primary.icon-btn {
    width: 160px;
}
.icon-btn:hover {
  animation: pulse-gap 1s infinite ease-in-out;
}
.ripple-btn {position:relative;overflow: hidden;}
.ripple-btn span {
  position: absolute;
  background: #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  animation: animate 1s linear infinite;
}
@keyframes animate {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  100% {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}
.home-banner-section .btn.outline {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.home-banner-section .btn img{
  height:16px;
}
.home-banner-section .btn:hover img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7485%) hue-rotate(18deg) brightness(103%) contrast(104%);
}
.home-banner-section .btn:hover {
  /*opacity: 0.85;*/
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid #fff;
}

.home-banner-section .stats {
  display: flex;
  justify-content: center;
  gap: 130px;
  color: #e2e8f0;
  font-size: 16px;
  margin-bottom: 40px;
      margin-top: 40px;
}


.home-banner-section .stats strong {
  font-size: 36px;
  display: block;
  margin-top: 5px;
  color: #fff;
}
.count-sec .stats {
  display: flex;
  justify-content: center;
  gap: 130px;
  color: #000000;
  font-size: 16px;
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: center; 
}
.count-sec .stats strong {
  font-size: 36px;
  display: block;
  margin-top: 5px;
  color: #000000;
  font-weight: 700; 
}
.count-sec .stats .client-box .icon-content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.count-sec .client-box .icon-content img {
    width: 32px;
    height: 32px;
  filter: invert(1);
    margin-right: 10px;
}
.home-banner-section .scroll-icon {
  font-size: 24px;
  animation: bounce 2s infinite;
  margin-top: 20px;
  opacity: 0.6;
}
.home-banner-section .client-box .icon-content img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
.home-banner-section .client-box .icon-content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-banner-section .client-box p {
  font-size: 18px;
}
.count-sec .stats .client-box p {
  font-size: 18px;
  line-height: 1.5;
}
.home-banner-section .mouse-scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
}

.home-banner-section .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 14px;
  position: relative;
}

.home-banner-section .scroller {
  width: 4px;
  height: 8px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite ease-in-out;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Banner E */

.clients-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #f9fbfc;
  text-align: center;
}

.clients-header .badge {
  border: 1px solid var(--primary-color);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.clients-section .clients-header h2 {
  font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.clients-section .clients-header .highlight {
  background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clients-section .clients-header p {
  color: #6b7280;
  font-size:20px;
  max-width: 600px;
  margin: 10px auto 30px;
}

.clients-section .client-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  text-align: center;
  display: flex !important;
    align-items: center;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
        transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;

}
.clients-section .client-card:hover{
-webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    border: 1px solid #00336680;
        transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;

} 

.clients-section .client-card img {
    height: 65px;
    margin-bottom: 0px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    max-width: 136px;
}


.clients-section .slick-next:before, .clients-section .slick-prev:before {
  color: #000;
  font-size: 25px;
}

.client-slider .slick-slide, .partner-slider .slick-slide {
  margin: 5px;
}

.partner-slider {
      width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.client-slider {
  width: 85%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width:1440px){
	.home-banner-section .btn.primary.icon-btn{
		width: 170px;
	}
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .clients-section .slick-prev, .clients-section .slick-next {
    display: none !important;
  }
}


/* Server S */


.services-section{
  padding: 80px 0px;
  margin: 0 auto;
  text-align: center;
  background: #f9fbfc;
}

.services-section .section-header .section-subtitle {
  font-size: 14px;
  padding: 6px 12px;
  border: 1px solid #0070f3;
  border-radius: 20px;
  display: inline-block;
  color: #0070f3;
  margin-bottom: 10px;
}

.services-section .section-header .section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-section .section-header .section-title span {
      background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-section .section-description {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 20px;
}

.services-section .service-cards {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    display: grid;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.services-section .service-cards .card {
  background: white;
  border: 1px solid #e1e8ed;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  text-align: left;
  transition: transform 0.3s ease;
}

.services-section .service-cards .card a {
  text-decoration: none;
  color: var(--primary-color);
}

.services-section .service-cards .card:hover {
  /*transform: translateY(-5px);
  border: 1px solid #00336680;
  transition: all .3s cubic-bezier(.4,0,.2,1);*/

    border: 1px solid #00336680;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px #21293c26;
    background: #fff;
}

.services-section .service-cards .card:hover .icon-box{
  background-color: #00336633;
}

.services-section .service-cards .card:hover h3, .services-section .service-cards .card h3 a:hover{
  color: var(--primary-color);
}

.services-section .service-cards .icon-box {
  width: 66px;
  max-width: 66px;
    height: 66px;
    background: #0033661a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #00336633;
}



.services-section .service-cards .icon svg{
    color: var(--primary-color);
    width: 100%;
    height: 100%;
}



.services-section .service-cards .card h3 {
      font-size: 20px;
    color: #212529;
    margin-bottom: 20px;
    letter-spacing: -.025em;
    margin-left: 16px;
    font-weight: 600;
}

.services-section .service-cards .card h3 a {
  color: #212529;
  text-decoration: none;
}

.services-section .service-cards .card p {
     font-size: 16px;
    color: #65758b;
    margin-bottom: 20px;
}

.services-section .service-cards .card .icon-box .icon {
  width: 32px;
  height: 32px;
}
.services-section .service-cards .card .icon-box .icon img {
  width: 100%;
  height: 100%;
}

.services-section .service-cards .card ul {
  list-style: none;
  padding-left: 0;
  
  margin-bottom: 0px;
}

.services-section .service-cards .card ul li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  font-size: 14px;
      color: #65758b;
}
.services-section .service-cards .card ul li i {
  margin-right:8px;
  color: var(--primary-color);
}
.service-cards .icon_title_flex {
  display: flex;
  align-items: center;
}

.services-section .service-cards .card h3 .badge {
      color: #0e141b;
    background: #f1f5f9;
    font-size: 12px;
    border-radius: 10px;
}

.service-cards .service_all_content {
      display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}

.services-section .service-cards .service_all_content {
      display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}

/*.portfolio-companies .service-cards .card h3 {
    margin-bottom: 0px;
}*/
.portfolio-companies .service-cards .card h3 .badge {
    color: #0e141b;
    background: transparent;
    font-size: 12px;
    border-radius: 10px;
    display: table;
    white-space: break-spaces;
    text-align: left;
	margin-top: 7px;
	padding: 5px 0;
}
.white-bg-sec {
    background: #ffffff;
}
.grey-bg-sec {
    background: #f9fbfc;
}

.leadership-box {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding: 75px;
    border: 1px solid #e1e7ef;
    border-radius: 10px;
    margin-top: 30px;
    
}
.leadership-box .content {
    font-style: italic;
    color: #65758b;
    font-size: 1.5rem;
    line-height: 2rem;
        margin-bottom: 32px;
}

.leadership-box .svg-icon{
      width: 48px;
    height: 48px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.leadership-box .svg-icon svg, .leadership-box .svg-icon img {
    width: 100%;
    height: 100%;
    color: #0363;
  }

.leadership-bottom .user_round_image span {
      width: 80px;
    height: 80px;
    display: block;
    border:1px solid #ddd;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
        color: var(--primary-color);

        font-size: 24px;
        margin-bottom: 16px;
}

.leadership-bottom .user_round_image span img {
  width: 100%;
  height: 100%;
}


.leadership-bottom .title{
      font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    margin-bottom: 0px;
}

.leadership-bottom .president-text {
      color: #65758b;
      font-size: 16px;
      margin-bottom: 0px;
}

.view_more_our_services a {
	padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 600;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
	transition: all 0.3s ease;
}
.view_more_our_services a:hover {
	background: linear-gradient(135deg, #0e141b, #036, #06c);
	color: #fff;
	transition: all 0.3s ease;
}


/* Service E */


/* Worldwide S */
.home .worldwide-box .locations {
	margin-bottom:0;
}

.worldwide-box .global-presence {
  padding: 30px 0px;
  margin: 0 auto;
}

.Worldwide_location_main .worldwide-box .locations {
      grid-template-columns: repeat(3, minmax(0, 1fr));
}

.worldwide-box .locations {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    display: grid;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.worldwide-box .location-card {
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.worldwide-box .location-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(33, 41, 60, 0.15) 0px 20px 40px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
        border: 1px solid #00336680;
}


.worldwide-box .icon span {
      font-size: 24px;
    display: inline-block;
    background: #eaf1f8;
    color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 15px;
    width: 48px;
    height: 48px;
    line-height: 44px;

}

.worldwide-box .location-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 5px;
}

.worldwide-box .location-card .country {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

.worldwide-box .location-card .tag {
  background: #f1f5f9;
  color: #212529;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 500;
}

.worldwide-box .location-card:nth-child(2) .tag {
      background: #002b5c;
    color: white;
}

.worldwide-box .location-card .info {
  font-size: 12px;
  color: #555;
}

.worldwide-box .stats {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    display: grid;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.worldwide-box .stat-box {
  text-align: center;
      display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.worldwide-box .stat-icon {
	background: #e3ecf6;
	border-radius: 50%;
	color: #003e7f;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
	width: 64px;
	height: 64px;
	line-height: 64px;
}

.worldwide-box .stat-box h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.worldwide-box .stat-box .inlineRow {
    display: flex;
    justify-content: center;
    align-items: center;
   flex: 1;
}

.worldwide-box .stat-box .inlineRow strong {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-top: -5px;
    margin-left: 3px;
}

.worldwide-box .stat-box p {
  font-size: 16px;
  color: #65758b;
  margin: 0;
}
.worldwide-box .icon span img{
	max-width:35px;
}
.worldwide-box .icon span svg {
  color: var(--primary-color);
}

.bridging-technology .section-description {
    color: #6c757d;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 20px;
}

.bridging-technology .icon-trans {
    width: 40px;
    height: 40px;
/*     display: inline-table; */
    margin-bottom: 16px;
}
.bridging-technology .icon-trans img {
  width: 100%;
  height: 100%;
}
.mission-control-flex {
    display: flex;
    flex-flow: column nowrap;
    gap: 5px;
    margin-top: 5px;
}
.worldwide-box .stat-box:nth-child(1) .icon-trans {
    animation: floatone 2.5s ease-in-out infinite;
}
@keyframes floatone {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.worldwide-box .stat-box:nth-child(2) .icon-trans {
    animation: floattwo 2s ease-in-out infinite;
}
@keyframes floattwo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.worldwide-box .stat-box:nth-child(3) .icon-trans {
    animation: floatthree 1.5s ease-in-out infinite;
}
@keyframes floatthree {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}


.bridging-technology .icon-trans.two svg {
    color: #0066cc;
}

.bridging-technology .icon-trans svg{
    width: 100%;
    height: 100%;
}

.bridging-technology .stat-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
}


/* Worldwide E */

/* pioneering-business S */



.pioneering-business {
  padding-top: 50px;
  padding-bottom: 50px;
}
.pioneering-business .section-header {
  text-align: left;
}

.pioneering-business .section-header .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pioneering-business .section-description {
    color: #6c757d;
    font-size: 18px;
    margin-bottom: 20px;
}
.pioneering-list ul {
  margin: 0px;
  padding: 0px;
}

.pioneering-list .custom-bullet {
  list-style: none;
  padding-left: 0;
}

.custom-bullet li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #1f2937;
  list-style: none;
}

.custom-bullet li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color); 
  border-radius: 50%; 
}
.custom-bullet li:nth-child(2)::before {
  background-color: #0066cc;
}

/*.pioneering-business .row {
  align-items: center;
}*/
.pioneering-business .commitment-section {
  text-align: left;
  margin-top: 42px;
}

.commitment-section .title {
    font-weight: 700;
    font-size: 36px;
	margin-bottom: 10px;
}
.commitment-section p {
  font-size: 16px;
  color: #6c757d;
}

.pioneering-business .clients-header .badge {
    border: none;
    border-radius: 20px;
    color: #0e141b;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 16px;
    background: #f1f5f9;
}

/* pioneering-business E */

/* What Drives Us S  */

.what-drives-section, .launch-mission-section {
  background-color: #f9fbfc !important;
}
.what-drives-section .worldwide-box .global-presence {
    padding: 0px !important;
}

.what-drives-section .worldwide-box .location-card {
    background: #fbfcfd !important;
}

.what-drives-section .worldwide-box .locations {
  margin-bottom: 0px !important;
}

.portfolio-companies .icon span {
        border: 1px solid #00336633;
    width: 66px;
    height: 66px;
        display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-companies .location-card .title {
  font-size: 20px;
      margin-bottom: 10px;
}

.portfolio-companies .location-card .content {
  font-size: 18px;
}

.portfolio-companies .location-card:hover .title{
  color: var(--primary-color);
}

/* What Drives Us E  */

/* Testimoanial S */

/* Ratings Section */
.testimonials_section .ratings-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.testimonials_section .rating-box {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem 1rem;
  text-align: center;
  min-width: 320px;
  background: #fff;
}

.testimonials_section .badge {
  display: inline-block;
  padding: 0.3rem 0.6rem;
}

.testimonials_section .badge-orange {
  background: #ff6600;
}



.testimonials_section .rating-box:nth-child(2) .badge-orange {
  background: #16a34a;
}

.testimonials_section .main_row_inner .stars {
      color: #eab308;
    font-size: 24px;
    line-height: 0;
}

.testimonials_section .testimonial-card .stars {
      color: #eab308;
    font-size: 24px;
    margin-bottom:16px;
}
.testimonials_section .testimonial-card .stars svg {
  fill: #eab308;
}

.testimonials_section .rating-score {
  font-weight: bold;
  font-size: 1.1rem;
  margin-left: 5px;
}

.testimonials_section .subtext {
  font-size: 0.85rem;
  color: #666;
}

/* Testimonials Section */
/*.testimonials_section .testimonials {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    display: grid;
    gap: 20px;
}*/

.testimonials_section .slick-slide > div {
  padding: 10px;
}

.testimonials_section .testimonial-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    
    position: relative;
    padding-bottom: 70px;
     min-height: 300px; /* Adjust to your design */
}

.testimonials_section .slick-dots li button:before {
    font-size: 10px;
}

.testimonials_section .testimonial-card .content, .testimonials_section .testimonial-card p {
    font-style: italic;
  line-height: 1.5;
}
.testimonials_section .testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px #21293c26;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  border: 1px solid #00336680;
}

.testimonials_section .rating-box a {
	color: #65758b;
	position: relative;
	display: inline-block;
}
.testimonials_section .rating-box a i {
  transition: transform 0.3s ease;
}

.testimonials_section .rating-box a:hover i {
  animation: arrowMove 0.6s infinite alternate;
}

@keyframes arrowMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(3px, -3px);
  }
}
.testimonials_section .quote-icon {
  color: #cbd5e1;
}
.testimonials_section .quote-icon svg, .testimonials_section .quote-icon img {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
}

.testimonials_section .quote {
  font-style: italic;
  font-size: 16px;
  color: #65758b;
  line-height: 1.5;
}

.testimonials_section hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 1rem 0;
}

.testimonials_section .author {
  font-size: 14px;
      position: absolute;
    bottom: 20px;
}

.testimonials_section .author strong {
  color: #0f172a;
  font-size: 16px;
}

.testimonials_section .author a {
  color: var(--primary-color);
  text-decoration: none;
}

.ratings-container .rating-box {
      display: flex;
    align-items: center;
    justify-content: space-between;
        text-align: left;
}
.main_row_flex .main_row_inner {
      display: flex;
    align-items: center;
}

/* Testimaonal E */


/* Contat Form S */


/* Dynamic Form S */
.getin-form form.wpcf7-form {position:relative;}

.getin-form .wpcf7-not-valid-tip {
    position: absolute;
    top: 27px;
}

.getin-form .wpcf7 form.invalid .wpcf7-response-output, 
.getin-form .wpcf7 form.unaccepted .wpcf7-response-output, 
.getin-form .wpcf7 form.payment-required .wpcf7-response-output{
    position:absolute;
    bottom: -30px;
    text-align:center;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s ease;
    width: 100%;
}

.wpcf7-form .two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* space between fields */
  row-gap: 0px;
}

.wpcf7-form .two-column .form-group {
  position: relative;
  flex: 1 1 calc(50% - 20px);
  box-sizing: border-box;
}

.wpcf7-form .two-column .form-group label {
  display: block;
}

.wpcf7-form .two-column .form-group input,
.wpcf7-form .two-column .form-group select,
.wpcf7-form .two-column .form-group textarea {
  width: 100%;
  margin-top: 5px;
}
/* .wpcf7-form.invalid .two-column .form-group p {
  margin-bottom: 0px;
} */

/* Dynamic Form E */

.getin-form {
  text-align: left;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.getin-form .title-form {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.getin-form form .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.getin-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.getin-form label {
  margin-bottom: 20px;
  font-weight: 500;
  color: #0e141b;
  font-size: 14px;
}

.home-form-right .card .small-title {
    color: #65758b;
}

.getin-form input, .getin-form textarea {
    padding: 9px 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.getin-form input:focus, .getin-form textarea:focus {
  border-color: #0052cc;
  outline: none;
}

.getin-form .full-width {
  width: 100%;
  margin-bottom: 1.5rem;
}

.getin-form .submit-btn {
  background-color: #002b5c;
  color: white;
  border: none;
  padding: 10px 10px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s;
  width: 100%;
  justify-content: center;
  margin-top: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.getin-form .submit-btn:hover {
  background-color: #003b8c;
   transform: scale(1.05); /* Zoom effect */
  background-color: #0e3a65; /* Slightly darker */
}


.home-form-right .card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  text-align: left;
  border: 0px;
}

.home-form-right .title-form {
  margin-bottom: 1.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  display:flex;
  gap:5px;
  align-items:center;
}

.home-form-right .mission-title a:hover {
  text-decoration: none;
} 

.home-form-right .info-list {
  display: flex;
  flex-flow: row wrap;
  gap: 2rem 1.2rem;
}

.home-form-right .info-item {
  display: flex;
  gap: 1rem;
  flex: 1 1  calc(50% - 1.2rem);
  max-width: calc(50% - 1.2rem);
}

.home-form-right .icon {
    font-size: 17px;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: #0033661a;
    border: 1px solid #00336633;
    text-align: center;
    border-radius: 5px;
    line-height: 37px;
}
.home-form-right .icon img {
  width: 17px;
}

.home-form-right a {
  color: var(--primary-color);
  text-decoration: none;
}

.home-form-right a:hover {
  text-decoration: underline;
}

.home-form-right .presence-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-form-right .presence-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f9fc;
  padding: 1rem;
  border-radius: 10px;
}

.home-form-right .presence-item .badge {
  background: #e1e4e8;
  color: #0e141b;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: 500;
}

.home-form-right .presence-item:first-child .badge.primary {
  background: #002b5c;
  color: white;
}

.home-form-right .presence-item .small-text {
      color: #65758b;
}

.home-form-right .response-card .title-response {
  margin-bottom: 1.69rem;
  font-size: 1.5rem;
  font-weight: 600;
  display:flex;
  gap:5px;
  align-items:center;
}

.home-form-right .response-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.home-form-right .response-card ul {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
}

.home-form-right .response-card li {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* Contat Form E */



@media (max-width: 1440px) {
	.footer-menu-main{
		width: 70%;
	}
	.footer-logo{
		padding-right: 25px;
	}
  .home-banner-section {
    padding-top: 30px;
    padding-bottom: 30px;
    /*height: 85vh;*/
  }
  .home-banner-section h1 {
      margin-bottom: 15px;
      font-size: 3.5rem;
  }
  .home-banner-section p {
      font-size: 20px;
      margin-bottom: 30px;
  }
  .home-banner-section .btn {
    padding: 6px 25px;
    font-size: 16px;
  }
  .home-banner-section .stats strong {
      font-size: 30px;
  }
  .clients-section {
      padding-top: 50px;
      padding-bottom: 50px;
  }
  .clients-section .clients-header h2 {
      font-size: 36px;
  }
  .services-section {
    padding: 50px 0px;
  }
  .services-section .section-header .section-title {
      font-size: 36px;
  }
  .services-section .section-description {
      margin: 0 auto 30px;
      font-size: 18px;
  }
  .services-section .service-cards .card {
      padding: 25px 20px;
  }
  .services-section .service-cards .icon-box {
      width: 56px;
      height: 56px;
      margin-bottom: 15px;
  }
  .services-section .service-cards .card h3 {
      font-size: 18px;
      margin-left: 12px;
  }
  .services-section .service-cards .card p {
      font-size: 14px;
  }
  .leadership-box .content {
      font-size: 1.25rem;
  }
  .leadership-box {
      padding: 60px;
      margin-top: 20px;
  }
  .leadership-box .svg-icon {
      width: 40px;
      height: 40px;
  }
  .leadership-bottom .user_round_image span {
      width: 60px;
      height: 60px;
      line-height: 60px;
      font-size: 20px;
      margin-bottom: 10px;
  }
  .worldwide-box .locations {
      gap: 10px;
      margin-bottom: 30px;
          grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .portfolio-companies .icon span {
      border: 1px solid #00336633;
      width: 60px;
      height: 60px;
      /*line-height: 55px;*/
  }
  .worldwide-box .stat-icon {
      width: 60px;
      height: 60px;
      line-height: 60px;
  }
  .worldwide-box .global-presence {
      padding: 10px 0px;
  }

  .clients-section .clients-header p{
    font-size:18px;
  }

}


@media (max-width: 1199px) {
	
  .home-banner-section .badge {
      padding: 5px 20px;
      font-size: 12px;
      display: inline-flex;
      align-items: center;
  }
  .home-banner-section h1 {
      font-size: 3rem;
  }
  .home-banner-section .banner-content {
      max-width: 50rem;
  }
  .home-banner-section p {
      font-size: 18px;
      margin-bottom: 30px;
      line-height: 28px;
  }
  .home-banner-section .btn {
      padding: 6px 20px;
      font-size: 14px;
  }
  .home-banner-section .stats {
      gap: 30px;
      font-size: 20px;
      margin-bottom: 20px;
      margin-top: 30px;
  }
  .home-banner-section .stats strong {
      font-size: 25px;
  }
  .home-banner-section .client-box p {
      font-size: 16px;
      margin-bottom: 20px;
  }
  .home-banner-section .client-box .icon-content img {
      width: 25px;
      height: 25px;
  }
  .count-sec .stats {
      gap: 30px;
      font-size: 20px;
      margin-bottom: 20px;
      margin-top: 30px;
  }
  .count-sec .stats strong {
      font-size: 25px;
  }
  .count-sec .client-box p {
      font-size: 16px;
      margin-bottom: 20px;
  }
  .count-sec .client-box .icon-content img {
      width: 25px;
      height: 25px;
  }
  .clients-section {
      padding-top: 35px;
      padding-bottom: 35px;
  }
  .clients-header .badge {
      font-size: 11px;
  }
  .clients-section .clients-header h2 {
      font-size: 28px;
  }
  .clients-section .clients-header p {
      margin: 10px auto 20px;
      font-size: 14px;
  }
  .clients-section .client-card img {
      height: 55px;
  }
  .services-section {
      padding: 35px 0px;
  }
  .services-section .section-header .section-title {
      font-size: 28px;
  }
  .services-section .section-description {
      margin: 0 auto 30px;
      font-size: 14px;
      max-width: 600px;
  }
  .services-section .service-cards .card {
      padding: 15px 15px;
  }
  .services-section .service-cards .card h3 {
      font-size: 17px;
      margin-left: 10px;
      margin-bottom: 10px;
  }
  .services-section .service-cards .card h3 {
      font-size: 17px;
      margin-left: 10px;
      margin-bottom: 10px;
  }
  .services-section .service-cards .card p {
      margin-bottom: 15px;
  }
  .services-section .service-cards {
      gap: 10px;
          grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-section .service-cards .icon-box {
      width: 45px;
      height: 45px;
      min-width: 45px;
      margin-bottom: 10px;
  }
  .portfolio-companies.services-section .service-cards .card h3 {
      margin-bottom: 0;
  }
  .portfolio-companies .service-cards .card h3 .badge {
      font-size: 11px;
      margin-top: 2px;
  }
  .portfolio-companies .service-cards .icon_title_flex {
      display: flex  ;
      align-items: flex-start;
  }
  .leadership-box {
        max-width: 750px;
      padding: 30px;
      margin-top: 15px;
  }
  .leadership-box .content {
      font-size: 1.125rem;
      line-height: 160%;
      margin-bottom: 20px;
  }
  .leadership-bottom .user_round_image span {
      width: 50px;
      height: 50px;
      line-height: 50px;
      font-size: 16px;
      margin-bottom: 5px;
  }
  .leadership-bottom .title {
      font-size: 1.125rem;
  }
  .leadership-bottom .president-text {
      font-size: 14px;
  }
  .home-form-right .info-item {
    flex: 1 1  100%;
    max-width: 100%;
  }
  .worldwide-box .location-card {
    border-radius: 10px;
    padding: 15px 15px;
  }
  .worldwide-box .icon span svg, .worldwide-box .stat-icon svg {
      width: 20px;
  }
  .portfolio-companies .icon span {
      width: 50px;
      height: 50px;
      /*line-height: 45px;*/
      margin-bottom: 10px;
  }
  .worldwide-box .stats {
      gap: 10px;
      max-width: 600px;
      margin-top: 30px;
  }
  .worldwide-box .stat-icon {
      width: 40px;
      height: 40px;
      line-height: 40px;
  }
  .worldwide-box .stat-box h4 {
      font-size: 20px;
  }
  .worldwide-box .stat-box p {
      font-size: 14px;
  }
  .testimonials_section .rating-box {
      padding: 10px;
      min-width: 300px;
  }
  .testimonials_section .rating-score {
      font-size: 14px;
  }
  .testimonials_section .subtext {
      font-size: 13px;
  }
  .testimonials_section .quote-icon svg, .testimonials_section .quote-icon img {
      width: 25px;
      height: 25px;
  }
  .testimonials_section .quote {
      font-size: 14px;
  }
  .testimonials_section hr {
      margin: 10px 0px;
  }
  .testimonials_section .author strong {
      font-size: 15px;
  }
  .testimonials_section .author {
      font-size: 13px;
  }
  .testimonials_section .testimonials {
      gap: 10px;
  }
  .testimonials_section .testimonial-card {
    padding: 18px;
            padding-bottom: 60px;
  }
  .worldwide-box .stats {
      gap: 10px;
      max-width: 820px;
      margin-top: 20px;
  }
  .bridging-technology .icon-trans svg {
      margin-bottom: 10px !important;
      width: 25px !important;
  }
  .custom-bullet li, .commitment-section p {
      font-size: 14px;
  }
  .custom-bullet li {
    margin-bottom: 5px;
  }
  .pioneering-business .section-description {
      margin-bottom:15px;
  }
  .pioneering-business {
      padding-top: 35px;
      padding-bottom: 0px;
  }
  .commitment-section .title {
      font-size: 28px;
  }
  .portfolio-companies .icon span {
      width: 40px;
      height: 40px;
      /*line-height: 35px;*/
      margin-bottom: 10px;
  }
  .portfolio-companies .location-card .title {
      font-size: 17px;
      margin-bottom: 5px;
  }
  .portfolio-companies .location-card .content {
      font-size: 16px;
      margin-bottom: 0px;
  }
  .getin-form .title-form {
      margin-bottom: 1.5rem;
      font-size: 18px;
  }
  .getin-form {
      padding: 18px;
  }
  .getin-form .form-group {
      flex: 1;
      display: flex;
      flex-direction: column;
      margin-bottom: 12px;
  }
  .getin-form form .form-row {
      display: block;
      gap: 10px;
  }
  .getin-form label {
      margin-bottom: 1rem;
  }
  .home-form-right .title-form {
      font-size: 18px;
  }
  .home-form-right .icon {
      font-size: 14px;
      width: 30px;
      height: 30px;
      border-radius: 5px;
      line-height: 27px;
  }
  .home-form-right .mission-title .text-content, .global-title .country-title  {
      font-size: 15px;
  }
  .home-form-right .mission-title a, .home-form-right .mission-title .small-title, .presence-item .small-text {
    font-size: 14px;
  }
  .home-form-right .badge, .home-form-right .badge.primary {
    font-size: 11px;
  }
  .home-form-right .card {
      padding: 18px;
      margin-bottom: 1rem;
  }
  .home-form-right .response-card .title-response .title {
      font-size: 18px;
  }
  .home-form-right .response-card li {
      font-size: 14px;
      margin-bottom: 5px;
  }
  .home-form-right .response-card p {
    font-size: 14px;
  }
  .getin-form .wpcf7 form.invalid .wpcf7-response-output, 
  .getin-form .wpcf7 form.unaccepted .wpcf7-response-output, 
  .getin-form .wpcf7 form.payment-required .wpcf7-response-output{
      font-size: 11px;
  }

}

@media(min-width:767px)and (max-width:1199.98px){
    .header-mn .header-wrapper #humberg-mobile{
    top: 114px;
  }
  .header-mn.sticky .header-wrapper #humberg-mobile{
    top: 83px;
  }
}

@media (max-width: 991px) {
   main#main_wrapper {
      padding-top: 0px;
  }
  .home-banner-section {
      padding-top: 40px;
      padding-bottom: 30px;
      height: 100%;
    min-height: calc(100vh - 85px);
  }
  .home-banner-section .badge {
      padding: 3px 10px;
      font-size: 11px;
  }
  .home-banner-section h1 {
              font-size: 2.125rem;
       
  }
  .home-banner-section .banner-content {
      max-width: 35rem;
       padding-left: 10px;
        padding-right: 10px;
  }
  .home-banner-section p {
      font-size: 16px;
      line-height: 25px;
  }
  .home-banner-section .stats strong {
      font-size: 20px;
  }
  .home-banner-section .client-box p {
      font-size: 14px;
      margin-bottom: 10px;
  }
  .wpcf7-form .two-column .form-group {
      flex: 1 1 calc(100% - 0px);
      box-sizing: border-box;
      margin-bottom: 0px !important;
  }
}

@media (max-width: 767px) {
  .services-section .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .worldwide-box .locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonials_section .ratings-container {
      gap: 1rem;
      margin-bottom: 1rem;
  }
  .services-section .section-description {
      margin: 0 auto 20px;
      font-size: 14px;
      max-width: 100%;
  }
  .testimonials_section .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pioneering-business .commitment-section {
      margin-top: 15px;
  }
  .getin-form {
      margin-bottom: 15px;
  }
  .worldwide-box .stats {
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 30px !important;
  }
}

@media (max-width: 575px) {
  .Worldwide_location_main .worldwide-box .locations {
        grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .home-banner-section .mouse-scroll {
    display: none;
  }
}

@media (max-width: 479px) {
  main#main_wrapper {
      padding-top: 0px;
  }
  .home-banner-section h1 {
      font-size: 1.75rem;
  }
  .home-banner-section .banner-content {
      max-width: 100%;
  }
  .home-banner-section .badge img {
      margin-right: 5px;
      width: 16px;
  }
  .home-banner-section .badge {
      padding: 3px 10px;
      font-size: 10px;
      margin-bottom: 10px;
  }
  .home-banner-section p {
      font-size: 14px;
      line-height: 22px;
      margin-bottom: 20px;
      padding: 0px 10px;
  }
  .home-banner-section .banner-buttons {
      display: grid;
      gap: 10px;
      margin-bottom: 20px;
  }
  .home-banner-section .btn.primary {
      margin-bottom: 0px;
  }
  .home-banner-section .btn {
      padding: 6px 20px;
      font-size: 14px;
      width: 220px !important;
      justify-content: center;
  }
  .home-banner-section .btn.outline {
      border: 1px solid #fff;
  }
  .home-banner-section .stats {
      margin-bottom: 20px;
      margin-top: 20px;
      display: block;
  }
  .count-sec .stats {
      margin-bottom: 20px;
      margin-top: 20px;
      display: block;
  }
  .home-banner-section .client-box {
      margin: 15px 0px;
  }
  .home-banner-section .client-box p {
      margin-bottom: 0;
  }
  .count-sec .stats .client-box{
    margin: 15px 0px;
  }
  .count-sec .stats .client-box p{
    margin-bottom: 0;
  }
  .clients-section .clients-header h2, .services-section .section-header .section-title, .commitment-section .title {
      font-size: 24px;
  }
  .clients-section .clients-header .highlight, .services-section .section-header .section-title span {
    display: block;
  }
  .services-section .service-cards, .testimonials_section .testimonials, .worldwide-box .locations {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .worldwide-box .stats {
    display: ruby;
  }
  .worldwide-box .stat-box {
      margin: 15px;
  }
  .worldwide-box .stat-box .inlineRow{
    line-height: 1.2;
  }
  .leadership-box .content {
      font-size: 16px;
  }
}

/* About Us Page Design S */

.padding-top-80 {
  padding-bottom: 80px;
}

.padding-bottom-80 {
  padding-top: 80px;
}

.acg-section {
    text-align: center;
    background: #f1f5f94d;
}

.acg-main .title{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.acg-main .about-content {
  font-size: 20px;
  color: #65758b;
}

.acg-main .about-group .badge {
    border: 1px solid #e1e7ef;
    border-radius: 20px;
    color: #0e141b;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.page-template-about-php .acg-main span.leading-title, .page-template-about-php .acg-main span.across-title {
  color: #fff;
      background: linear-gradient(135deg, #ffffff, #ffffff);
          -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.acg-main  .about-content {
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    color: #65758b;
}

.about-our-services {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.about-our-services .title{
      font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
.about-our-services .title span{
  background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.leader_team_section {
    background: #f1f5f94d;
}
.leader_team_section .team-section {
  text-align: center;
}

.leader_team_section .team-section .title {
   font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.leader_team_section .team-section .subtitle {
  font-size: 20px;
  color: #64748b;
  margin-bottom: 40px;
}

.global-presence-section .global-presence-main .team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.leader_team_section .team-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    display: grid;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.our-leadteam-section.leader_team_section .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.leader_team_section .team-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e1e7ef;
}

.leader_team_section .team-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.global-presence-section.leader_team_section .team-card:hover {
    transform: scale(1);
}

.leader_team_section .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #1e40af;
}

.leader_team_section .team-card .title {
  font-size: 1.25rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.leader_team_section .role {
    display: inline-block;
    margin-bottom: 20px;
    padding: 4px 10px;
    background-color: #f1f5f9;
    color: #0e141b;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
}

.leader_team_section.about_team_section .icon span.icon-round {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid transparent;
}

.leader_team_section .icon span.icon-round {
    width: 58px;
    height: 58px;
    line-height: 45px;
    background: #0033661a;
    display: block;
    border-radius: 5px;
    border: 1px solid #00336633;
    color: var(--primary-color);
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}
.leader_team_section .icon span.icon-round img {
  width: 100%;
  height: 100%;
}
.our-values-section.leader_team_section .icon span.icon-round img {
    width: unset !important;
    height: unset !important;
}

.leader_team_section .team-card p {
  margin-bottom: 0px;
}

.our-values-section.leader_team_section {
  background-color: transparent;
}
.our-values-section.leader_team_section .team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.our-values-section.leader_team_section .icon span.icon-round {
    line-height: 48px;
}

.global-presence-main {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.leader_team_section .team-card .address-details {
  margin-top: 20px;
  font-size: 14px;
}

.global-presence-section .team-card .title {
  font-size: 24px;
}

.global-presence-section .team-card:nth-child(2) .role{
  background: var(--primary-color);
  color: #fff;
}

.our-leadteam-section.leader_team_section {
    background: #ffffff;
}

.leader_team_section .team-card .linkedin-link {
  margin-bottom: 10px;
} 
.leader_team_section .team-card .linkedin-link a{
  text-decoration: none;
  font-size: 14px;
  color: #003366cc;
} 
.leader_team_section .team-card .linkedin-link a img {
  width: 16px;
}

.our-values-section.leader_team_section .team-grid, .our-core-values-section.portfolio-companies .locations{
      display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.our-values-section.leader_team_section .team-card, .our-core-values-section.portfolio-companies .locations .location-card {
    flex: 0 1 23%;
    max-width: 23%;
}

@media (max-width: 1440px) {
  .padding-top-80 {
      padding-bottom: 50px;
  }
  .padding-bottom-80 {
      padding-top: 50px;
  }
  .acg-main .title {
      font-size: 50px;
  }
  .acg-main .about-content {
    font-size: 1.125rem;
  }
  .about-our-services .title {
      font-size: 36px;
  }
  .leader_team_section .team-section .title{
    font-size: 36px;
  }
  .leader_team_section .team-grid .team-card .title {
    font-size: 1.125rem;
  }
  .global-presence-section .team-card .title {
      font-size: 20px;
  }
  .leader_team_section .icon span.icon-round {
    width: 50px;
    height: 50px;
    line-height: 40px;
  }
  .leader_team_section .icon span.icon-round i {
    font-size: 24px;
  }
  .our-values-section.leader_team_section .icon span.icon-round {
      line-height: 40px;
  }

}


@media (max-width: 1199px) {
  .padding-top-80 {
      padding-bottom: 35px;
  }
  .padding-bottom-80 {
      padding-top: 35px;
  }
  .acg-main .title {
      font-size: 40px;
      margin-bottom: 10px;
  }
  .acg-main .about-content {
      font-size: 15px;
      line-height: 1.5rem;
      margin-bottom: 0px;
  }
  .about-our-services .title {
      font-size: 1.75rem;
      margin-bottom: 15px;
  }
  .leader_team_section .team-section .subtitle {
      margin-bottom: 25px;
      font-size: 14px;
  }
  .leader_team_section .team-grid {
    gap: 15px;
  }
  .leader_team_section .icon span.icon-round {
      width: 45px;
      height: 45px;
      line-height: 33px;
  }
  .acg-main .about-content {
      font-size: 14px;
  }
  .about-our-services .content-box .content {
    font-size: 14px;
  }
  .leader_team_section .role {
      margin-bottom: 15px;
      font-size: 11px;
  }
  .leader_team_section .team-card p {
      font-size: 14px;
  }
  .leader_team_section .team-card {
    padding: 20px 15px;
  }
  .leader_team_section .team-section .title {
    font-size: 1.75rem;
  }
  .our-values-section.leader_team_section .team-card, .our-core-values-section.portfolio-companies .locations .location-card {
      flex: 0 1 48%;
      max-width: 48%;
  }

}

@media (max-width: 991px) {
  .acg-main .title {
      font-size: 35px;
      margin-bottom: 10px;
  }
  .acg-main .about-group .badge {
      font-size: 11px;
      margin-bottom: 5px;
  }
  .our-values-section.leader_team_section .team-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .leader_team_section .team-grid {
      gap: 10px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  

}

@media (max-width: 767px) {
  .leader_team_section .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .global-presence-section .global-presence-main .team-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 479px) {
  .acg-main .title {
      font-size: 30px;
      margin-bottom: 10px;
      line-height: 110%;
  }
  .about-our-services .title {
      font-size: 1.5rem;
      margin-bottom: 10px;
      line-height: 2rem;
  }
  .leader_team_section .team-section .title {
      font-size: 1.5rem;
  }
  .leader_team_section .team-grid .team-card .title {
      font-size: 1rem;
  }
  .leader_team_section .role {
      margin-bottom: 10px;
  }
  .leader_team_section .team-section .subtitle {
      margin-bottom: 15px;
  }
  .leader_team_section .team-card {
      padding: 15px 15px;
  }
  .leader_team_section .team-grid {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .about-our-services {
      max-width: 100%;
  }
  .our-values-section.leader_team_section .team-grid {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .our-leadteam-section.leader_team_section .team-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .global-presence-section .global-presence-main .team-grid {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .our-values-section.leader_team_section .team-card, .our-core-values-section.portfolio-companies .locations .location-card {
      flex: 0 1 100%;
      max-width: 100%;
  }

}

/* About Us Page Design E */


/* Ceo Message Page S */

.ceo-message-banner {
      background: linear-gradient(135deg, #0e141bf2, #003366e6, #0066ccd9);
}

.ceo-message-banner .about-group .badge, .ceo-message-banner .leading-title {
  color: #fff;
}
.ceo-message-banner .across-title {
    background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceo-message-banner .about-content {
  color: #dbeafe;
}

.ceo-message-section .ceo-message-box {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    
}

.ceo-message-section .ceo-message-box .ceo-frist-colum {
  border: 1px solid #e1e7ef;
  padding: 3rem;
  border-radius: 10px;
}

.ceo-frist-colum .ceo-top-details {
  display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}
.ceo-message-box .name_profile {
    width: 8rem;
    height: 8rem;
    border:1px solid #0033661a;
    border-radius: 9999px;
    min-width: 8rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.ceo-message-box span.profile-round {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}
.ceo-message-box span.profile-round img {
  width: 100%;
  height: 100%;
}
.ceo-right_detatils .title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}
.ceo-right_detatils .subtitle {
      font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ceo-message-box .quote-icon .icon svg, .ceo-message-box .ceo-bottom-details img {
  width: 3rem;
    height: 3rem;
    color: #00336633;
}

.ceo-message-box .ceo-bottom-details p {
  font-size: 18px;
}

.ceo-message-box .Warmregards {
    font-weight: 600;
    color: #0e141b;
    font-size: 18px;
}
.ceo-message-box .ceo-bottom-details p {
  margin-bottom: 24px;
}

.ceo-message-colum-box .worldwide-box .locations {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    display: grid;
    justify-content: center;
    gap: 32px;
    margin-bottom: 0px;
}
.ceo-message-colum-box {
  margin-top: 48px;
}

.ceo-message-colum-box .worldwide-box .icon span {
    margin-bottom: 24px;
    width: 64px;
    height: 64px;
    line-height: 64px;
}
.ceo-message-colum-box .worldwide-box .location-card .title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 16px;
}
.ceo-message-colum-box .worldwide-box .location-card:hover .title{
  color: var(--primary-color);
}
.ceo-message-colum-box .worldwide-box .global-presence {
  padding: 0px;
}

.ceo-bottom-details strong {
    font-weight: 600;
    color: #0e141b;
}

@media (max-width: 1440px) {
  .ceo-message-box .name_profile {
      width: 7rem;
      height: 7rem;
      min-width: 7rem;
  }
  
  
  .ceo-right_detatils .title {
      font-size: 1.75rem;
  }
  .ceo-message-box .ceo-bottom-details p {
      margin-bottom: 15px;
          font-size: 16px;
  }
  .ceo-message-box .Warmregards {
    font-size: 16px;
  }
  .ceo-message-colum-box .worldwide-box .icon span {
      margin-bottom: 15px;
      width: 54px;
      height: 54px;
      line-height: 54px;
  }
  .ceo-message-colum-box .worldwide-box .location-card .title {
      font-size: 1.125rem;
      line-height: 1.75rem;
      margin-bottom: 10px;
  }

}

@media (max-width: 1199px) {
  .ceo-message-section .ceo-message-box .ceo-frist-colum {
      padding: 2rem;
  }
  .ceo-message-box .name_profile {
      width: 6rem;
      height: 6rem;
      min-width: 6rem;
  }
  .ceo-right_detatils .title {
      font-size: 1.5rem;
  }
  .ceo-right_detatils .subtitle {
      font-size: 1.125rem;
      line-height: 1rem;
      color: var(--primary-color);
      margin-bottom: .5rem;
  }
  .ceo-message-box span.profile-round {
      font-size: 2rem;
  }
  .ceo-message-box .quote-icon .icon svg, .ceo-message-box .ceo-bottom-details img {
      width: 2.5rem;
      height: 2.5rem;
  }
  .ceo-message-box .ceo-bottom-details p {
      margin-bottom: 10px;
      font-size: 14px;
  }
  .ceo-message-box .Warmregards {
      font-size: 14px;
  }
  .ceo-message-colum-box .worldwide-box .location-card .title {
      font-size: 1.1rem;
      line-height: 1rem;
      margin-bottom: 10px;
  }
  .ceo-message-colum-box {
      margin-top: 35px;
  }
  .worldwide-box .location-card p {
    font-size: 14px;
  }
  .ceo-message-colum-box .worldwide-box .locations {
      gap: 20px;
  }
}

@media (max-width: 991px) {
  .ceo-message-section .ceo-message-box .ceo-frist-colum {
      padding: 1.5rem;
  }
  .ceo-message-box .name_profile {
      width: 5rem;
      height: 5rem;
      min-width: 5rem;
  }
  .ceo-right_detatils .title {
      font-size: 1.25rem;
      margin-bottom: 0px;
  }
  .ceo-right_detatils .subtitle {
      font-size: 1rem;
      line-height: 1rem;
  }
  .ceo-right_detatils .seo-content {
    font-size: 14px;
  }
  .ceo-frist-colum .ceo-top-details {
      gap: 1rem;
      margin-bottom: 1rem;
  }
  .ceo-message-box .quote-icon .icon svg, .ceo-message-box .ceo-bottom-details img {
      width: 2rem;
      height: 2rem;
  }
  .ceo-message-colum-box .worldwide-box .icon span {
      margin-bottom: 15px;
      width: 44px;
      height: 44px;
      line-height: 44px;
  }
  .ceo-message-colum-box .worldwide-box .locations {
      gap: 10px;
  }

}

@media (max-width: 767px) {
  .ceo-message-colum-box .worldwide-box .locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 479px) {
  .ceo-message-colum-box .worldwide-box .locations {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .ceo-message-section .ceo-message-box .ceo-frist-colum {
      padding: 1rem;
  }
  .ceo-frist-colum .ceo-top-details {
    display: block;
  }
}

/* Ceo Message Page E */

/* vision mission S */

.vision-mission-box {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.vision-mission-box .vision-mission-colum {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    gap: 3rem;
}
.vision-mission-colum .vision-mission-inner .OurVision {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.vision-mission-colum .vision-mission-inner .OurVision .round {
    width: 4rem;
    height: 4rem;
    background: #0033661a;
    border-radius: 50%;
    line-height: 4rem;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-right: 16px;
}

.vision-mission-colum .vision-mission-inner .title {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 0px;
}

.vision-mission-colum .vision-mission-inner .OurVision .round svg, .vision-mission-colum .vision-mission-inner .OurVision .round img {
  width: 2rem;
  height: 2rem;
}

.vision-mission-colum .vision-mission-inner .title .gradient {
    background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-mission-colum .vision-mission-inner .sub-content {
  font-size: 1.25rem;
  line-height: 1.625;
}

.vision-mission-right {
    border: 1px solid #e1e7ef;
    height: 100%;
    border-radius: 8px;
}

.vision-mission-right-inner {
    padding: 2rem;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.vision-mission-right {
    border: 1px solid #e1e7ef;
    height: 100%;
    border-radius: 8px;
    display: table;
    /* vertical-align: middle; */
    text-align: center;
}
.vision-mission-right .vision-mission-right-inner {
    padding: 2rem;
    height: 100%;
    align-items: center;
    display: table-cell;
    vertical-align: middle;
}

.vision-mission-right-inner .round {
    width: 8rem;
    height: 8rem;
    background: #0033661a;
    border-radius: 50%;
    line-height: 8rem;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1.5rem;
}
.vision-mission-right-inner .round svg, .vision-mission-right-inner .round img {
  width: 4rem;
    height: 4rem;
}

.vision-mission-right .vision-mission-right-inner .title {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.our-core-values-section {
  background-color: #f1f5f94d !important;
}

.our-core-values-section .worldwide-box .global-presence {
  padding: 0px;
}
.our-core-values-section .worldwide-box .locations {
  margin-bottom: 0px;
}
.our-core-values-section .location-card .content {
    font-size: 16px;
}
.vision-mission-colum .vision-mission-inner .content {
    margin-bottom: 0;
}

.our-core-values-section .worldwide-box .icon span {
    background: #0033661a;
    border: none;
}


@media (max-width: 1440px) {
  
  .vision-mission-colum .vision-mission-inner .title {
      font-size: 36px;
  }
  .vision-mission-colum .vision-mission-inner .OurVision .round {
      width: 3.5rem;
      height: 3.5rem;
  }
  .vision-mission-colum .vision-mission-inner .OurVision {
      margin-bottom: 1.125rem;
  }
  .vision-mission-colum .vision-mission-inner .sub-content {
      font-size: 1.125rem;
      line-height: 1.5;
  }
  .vision-mission-colum .vision-mission-inner .OurVision .round svg, .vision-mission-colum .vision-mission-inner .OurVision .round img {
      width: 1.5rem;
      height: 1.5rem;
  }
  .vision-mission-right-inner .round {
      width: 7rem;
      height: 7rem;
      line-height: 7rem;
      margin-bottom: 1.125rem;
  }
  .vision-mission-right .vision-mission-right-inner .title {
      font-size: 1.25rem;
      line-height: 1.5rem;
      margin-bottom: .8rem;
  }
  .vision-mission-right-inner .round svg, .vision-mission-right-inner .round img {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 1199px) {
  .vision-mission-colum .vision-mission-inner .title {
        font-size: 28px;
    }
    .vision-mission-colum .vision-mission-inner .OurVision .round {
        width: 3rem;
        height: 3rem;
    }
    .vision-mission-colum .vision-mission-inner .sub-content {
        font-size: 1rem;
        line-height: 1.5;
    }
    .vision-mission-colum .vision-mission-inner .OurVision {
        margin-bottom: 1rem;
    }
    .vision-mission-colum .vision-mission-inner .content {
      font-size: 14px;
    }
    .vision-mission-right .vision-mission-right-inner {
      padding: 1.5rem;
    }
    .vision-mission-right-inner .round {
        width: 6rem;
        height: 6rem;
        line-height: 6rem;
        margin-bottom: 1rem;
    }
    .vision-mission-right .vision-mission-right-inner p {
      margin-bottom: 0px;
      font-size: 14px;
    }
    .vision-mission-right-inner .round svg, .vision-mission-right-inner .round img {
        width: 3rem;
        height: 3rem;
    }
    .our-core-values-section .location-card .content {
        font-size: 14px;
    }
    .vision-mission-box .vision-mission-colum {
      gap: 2rem;
    }
}


@media (max-width: 767px) {
  .vision-mission-colum .vision-mission-inner .title {
      font-size: 1.5rem;
  }
  .vision-mission-colum .vision-mission-inner .OurVision .round {
      width: 2.5rem;
      height: 2.5rem;
  }
  .vision-mission-colum .vision-mission-inner .OurVision .round svg, .vision-mission-colum .vision-mission-inner .OurVision .round img {
      width: 1rem;
      height: 1rem;
  }
  .vision-mission-colum .vision-mission-inner .sub-content {
      font-size: 15px;
      line-height: 130%;
  }
  .vision-mission-box .vision-mission-colum {
      gap: 1rem;
  }
  .vision-mission-box .vision-mission-colum {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .vision-mission-right .vision-mission-right-inner .title {
      font-size: 1.25rem;
  }

}

/* vision mission E */


/* industries s */
.single-industries .main-solution.main-solution-inner .badge {
    color: #0e141b;
    background: #f1f5f9;
    font-size: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.transform-industry-section {
    background: #ededed4d;
}
.industries-bottom-section.services-section .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem;
}
.industries-bottom-box .box-ul li {
  position: relative;
    padding-left: 20px;
    margin-bottom: 16px;
}
.industries-bottom-box .box-ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}
.industries-bottom-box .box-ul ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
}
.industries-bottom-box .box-ul .key-title {
    margin-bottom: 15px;
    font-weight: 600;
        margin-top: 5px;
}
.industries-bottom-section .service-cards .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.industries-bottom-section.portfolio-companies {
    background: #fdfefe !important;
}
.transform-industry-inner {
    text-align: center;
}
.transform-industry-inner .title {
    font-size: 48px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 10px;
}
.transform-industry-inner .industry-tagline {
      font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 42rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}
.transform-industry-inner .industry-buttons a {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid var(--primary-color);
        cursor: pointer;
        margin-left: 8px;
    margin-right: 8px;
}
.transform-industry-inner .industry-buttons a img {
  width: 20px;
  height: 20px;
      margin-right: 5px;
}
.transform-industry-inner .getin-touch-btn {
  background: var(--primary-color);
  color: #fff;  
}

.transform-industry-inner .view-services-btn {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.transform-industry-inner .getin-touch-btn:hover{
  /*background-color: #003366e6;*/
      background-color: #fff;
    color: var(--primary-color);
}

.transform-industry-inner .getin-touch-btn:hover img {
    filter: grayscale(100%) brightness(0.1);
}

.transform-industry-inner .view-services-btn:hover{
  /*background-color: #0033661a;*/
      background-color: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease;
}

.transform-industry-inner .view-services-btn:hover img {
   filter: invert(1);
}

.transform-industry-inner .industry-buttons {
  display: inline-flex;
}



@media (max-width: 991px) {
  .industries-bottom-section.services-section .service-cards {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 2rem;
  }
  .industries-bottom-box .box-ul ul {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .industries-bottom-section.services-section .service-cards {
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 1rem;
  }
  .transform-industry-inner .industry-buttons a {
      padding-top: 10px;
      padding-bottom: 10px;
      padding-left: 1rem;
      padding-right: 1rem;
      font-size: 14px;
      margin-left: 4px;
      margin-right: 4px;
  }
}

/* industries e */


/* Press Release S */

.webinars .link.link-secondary {
    display: flex;
    align-items: center;
    gap: 15px;
}
.webinars .link.link-secondary span {
    font-weight: 700;
}
.webinars .link.link-secondary i  { 
  color: #002f6c;
}
.press-releases .link.link-secondary {
    display: flex;
    align-items: center;
    gap: 15px;
}
.press-releases .link.link-secondary span {
    font-weight: 700;
}
.press-releases .link.link-secondary i  { 
  color: #002f6c;
}

.industries .link.link-secondary {
    display: flex;
    align-items: center;
    gap: 15px;
}
.industries .link.link-secondary span {
    font-weight: 700;
}
.industries .link.link-secondary i  { 
  color: #002f6c;
}
.portfolios .link.link-secondary {
    display: flex;
    align-items: center;
    gap: 15px;
}
.portfolios .link.link-secondary span {
    font-weight: 700;
}
.portfolios .link.link-secondary i  { 
  color: #002f6c;
}
.post .link.link-secondary {
    display: flex;
    align-items: center;
    gap: 15px;
}
.post .link.link-secondary span {
    font-weight: 700;
}
.post .link.link-secondary i  { 
  color: #002f6c;
}
.taxonomy-service-category .link.link-secondary {
    display: flex;
    align-items: center;
    gap: 15px;
}
.taxonomy-service-category .link.link-secondary span {
    font-weight: 700;
}
.taxonomy-service-category .link.link-secondary i  { 
  color: #002f6c;
}
.blog_details .blog-info-link p {
    display: flex;
    align-items: center;
    gap: 7px;
  margin-bottom: 0;
}
.upcoming_webinars-section .press-release-inner .news-card {
  margin-bottom: 0px;
}

.press-release-inner {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}
.press-release-inner .news-card {
  border-radius: 8px;
  border: 1px solid #e1e7ef80;
  padding: 24px;
  background-color: #fff;
  margin-bottom: 0px;
}

.press-release-inner .news-card:hover{
  border:1px solid #00336680;
}
.press-release-inner .news-card .news-title:hover{
    color: var(--primary-color);
}

.press-release-inner .news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.press-release-inner .category {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 16px;
}

.press-release-inner .date {
  font-size: 14px;
      display: flex;
    align-items: center;
}

.press-release-inner .date svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.press-release-inner .news-title {
  font-size: 24px;
  font-weight: bold;
  margin: 15px 0 24px;
}

.press-release-inner .news-description {

  margin-bottom: 16px;
}


.press-release-inner .card-para p:first-child {
  font-size: 16px;
}
.press-release-inner .card-para p {
  font-size: 14px;
}
.press-release-inner .news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.press-release-inner .news-footer a:hover {
  text-decoration: none;
}

.press-release-inner .read-more {
  color: var(--primary-color);
      font-weight: 500;
      font-size: 16px;
  text-decoration: none;
      display: flex;
    align-items: center;
}

.press-release-inner .read-more:hover {
  text-decoration: underline;
}

.press-release-inner .share {
  font-size: 14px;
}
.services .link.link-secondary {
    display: flex;
    align-items: center;
    gap: 15px;
}
.services .link.link-secondary span {
    font-weight: 700;
}
.services .link.link-secondary i  { 
  color: #002f6c;
}

.iconTitle-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.iconTitle-flex .iconround {
    background: #0033661a;
    border: 1px solid #00336633;
    border-radius: 8px;
    width: 38px;
    height: 38px;
    display: flex;
    text-align: center;
    justify-content: center;
    margin-right: 10px;
    align-items: center;
}
.press-release-inner .read-more svg, .press-release-inner .read-more img {
  width: 16px;
  height: 16px;
  margin-left: 5px;
}

.bottom_link_name .email-div {
  margin-bottom: 10px;
  margin-top: 10px;
}
.bottom_link_name .email-div p{
  margin-bottom: 0px;
}

.bottom_link_name .email-div a {
  text-decoration: none;
  color: var(--primary-color);
}

@media (max-width: 1440px) {
  .press-release-inner .news-title {
      font-size: 22px;
      margin: 15px 0 15px;
  }
  .press-release-inner .news-card {
      padding: 18px;
      margin-bottom: 25px;
  }
  .press-release-inner .category {
    font-size: 11px;
  }
  .transform-industry-inner .title {
      font-size: 36px;
  }
  .transform-industry-inner .industry-tagline{
    font-size:18px;
  }
}


@media (max-width: 1199px) {
  .press-release-inner .category {
      font-size: 11px;
  }
  .press-release-inner .news-title {
      font-size: 20px;
      margin: 15px 0 10px;
  }
  .press-release-inner .card-para p:first-child {
      font-size: 15px;
  }
  .press-release-inner .read-more {
      font-size: 15px;
  }
  .transform-industry-inner .industry-tagline {
      font-size: 1.125rem;
      margin-bottom: 1.5rem;
  }

}

@media (max-width: 991px) {
  .transform-industry-inner .title {
      line-height: 1.75rem;
      margin-bottom: 1rem;
      font-size: 1.75rem;
  }
  .transform-industry-inner .industry-tagline {
      font-size: 1rem;
      margin-bottom: 1rem;
      line-height: 1.5rem;
  }
  .bottom_link_name .email-div a {
      font-size: 14px;
  }

}

@media (max-width: 479px) {
  .press-release-inner .news-meta {
      display: block;
  }
  .press-release-inner .date {
      margin-top: 10px;
  }
  .press-release-inner .news-meta .iconTitle-flex {
      display: flex;
      justify-content: flex-start;
  }
  .press-release-inner .news-title {
      font-size: 18px;
  }

}


/* Press Release E */

/* Webinars S */

.upcoming_webinars-section .press-release-inner {
    max-width: 100%;
}

.badge-topics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-topics .badge {
  background-color: #f3f6fa;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 9999px; /* full pill shape */
  white-space: nowrap;
}

.press-release-section .press-release-inner {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    display: grid;
    gap: 32px;
}

.press-release-section .press-release-inner .card-para {
      display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.press-release-section .press-release-inner .card-para .blog_details_wrap a {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
}
.upcoming_webinars-section .time_clock_list ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.upcoming_webinars-section .time_clock_list ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

.upcoming_webinars-section .time_clock_list ul li svg {
    width: 16px;
    height: 16px;
}
.upcoming_webinars-section .press-release-inner .card-para p:first-child {
    margin-top: 15px;
}

.upcoming_webinars-section .press-release-inner .title {
    font-size: 16px;
    font-weight: 500;
}
.registerNow-row {
    font-size: .875rem;
    line-height: 1.25rem;
    background: var(--primary-color);
    border-radius: 8px;    
    text-align: center;
    margin-top: 1.5rem;
}
.registerNow-row .register-btn {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
}
.upcoming_webinars-section .press-release-inner .category {
  background-color: #dcfce7;
  font-weight: 600;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.upcoming_webinars-section .press-release-inner .news-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.upcoming_webinars-section .press-release-inner .news-card:hover {
    transform: scale(1.05);    
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.upcoming_webinars-section.press-release-section .press-release-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.past-webinars-section.press-release-section .press-release-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.registerNow-row .register-btn svg, .registerNow-row .register-btn img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.past-webinars-section .registerNow-row {
    font-size: .875rem;
    line-height: 1.25rem;
    background: #fff;
    border: 1px solid #e1e7ef;
    border-radius: 8px;
    text-align: center;
    margin-top: 1.5rem;
}
.past-webinars-section .registerNow-row a {
  color: #0e141b;
}

.past-webinars-section .press-release-inner .news-title {
  font-size: 20px;
}

.past-webinars-section.upcoming_webinars-section .press-release-inner .category {
    background-color: #eff6ff;
    font-weight: 600;
    border: 1px solid #1d4ed8;
    color: #1d4ed8;
}
.press-release-inner .news-title {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0 24px;
}

.upcoming_webinars-section .press-release-inner .badge-topics P {
  width: 100%;
    display: contents;
}

@media (max-width: 1199px) {
  .past-webinars-section .transform-industry-inner .industry-tagline {
    font-size: 1rem;
  }
  .press-release-section .press-release-inner {
      gap: 16px;
  }
  .transform-industry-inner .title{
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .past-webinars-section.press-release-section .press-release-inner, .upcoming_webinars-section.press-release-section .press-release-inner {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* Webinars E */

/* Life at Cosmonaut Page S */

.our_culture_bottom .our_culture_grids {
    padding: 2rem;
}
.our_culture_top {
  text-align: center;
  margin-bottom: 4rem;
}
.our_culture_top .title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.our_culture_top .title .gradient {
      background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.our_culture_top p{
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.our_culture_bottom .our_culture_grids {
      background: #fff;
    border: 1px solid #e3e8ee;
    border-radius: 10px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.our_culture_bottom .our_culture_grids:hover {
    transform: translateY(-8px);
    box-shadow: rgba(33, 41, 60, 0.15) 0px 20px 40px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    border: 1px solid #00336680;
}
.our_culture_section .our_culture_bottom {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    display: grid;
}
.our_culture_bottom .our_culture_grids .icon-img {
    width: 4rem;
    height: 4rem;
    background: #0033661a;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    line-height: 60px;
    margin-left: auto;
    margin-right: auto;
	display: flex;
    justify-content: center;
    align-items: center;
}
.our_culture_bottom .our_culture_grids .icon-img img {
    width: 2rem;
    height: 2rem;
}

.our_culture_bottom .our_culture_grids .box-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.our_culture_bottom .our_culture_grids p {
  margin-bottom: 0px;
}

.team_moments_bottom .team_moments_grid{
   background: #fff;
    border: 1px solid #e3e8ee;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.team_moments_bottom .team_moments_grid:hover {
  transform: translateY(-8px);
    box-shadow: rgba(33, 41, 60, 0.15) 0px 20px 40px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    border: 1px solid #00336680;
}

.team_moments_bottom .team_moments_grid .team_moments_img {
  height: 250px;
}

.team_moments_bottom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    display: grid;
}
.team_moments_bottom .team_moments_grid .team_moments_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team_moments_bottom .team_moments_grid .team_moments_box {
    padding: 1.5rem;
}
.team_moments_bottom .team_moments_grid .team_moments_box .team_title{
    font-size: 1.25rem;
    line-height: 1.75rem;
        font-weight: 600;
}
.team_moments_bottom .team_moments_grid .team_moments_box  p {
  margin-bottom: 0px;
}

.team-moments-section {
    background: #f8fafb;
}

.join_our_section .transform-industry-inner .title .gradient {
  background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width:1440px){
  .our_culture_top .title {
      font-size: 36px;
  }
}
@media (max-width: 1199px) {
  .our_culture_top .title {
      font-size: 28px;
  }
  .team_moments_bottom {
      gap: 1.5rem;
  }
  .team_moments_bottom .team_moments_grid .team_moments_box {
      padding: 1rem;
  }
  .join_our_section .transform-industry-inner .title {
      font-size: 28px;
  }
  .transform-industry-inner .industry-buttons a {
      font-size: 14px;
      margin-left: 8px;
    margin-right: 8px;
     padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }
  .our_culture_bottom .our_culture_grids {
    padding: 20px;
  }
  
 
}

@media (max-width: 991px) {

  .team_moments_bottom {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }
/*   .join_our_section .transform-industry-inner .title {
      font-size: 2.125rem;
  } */

}

@media (max-width: 479px) {
  .team_moments_bottom {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .transform-industry-inner .industry-buttons {
      display: block;
  }
  .transform-industry-inner .industry-buttons a {
      display: block;
      margin-bottom: 10px;
  }

}


/* Life at Cosmonaut Page E */

/* Career Page S */
  .current-openings-bottom{
      max-width: 56rem;
      margin-left: auto;
      margin-right: auto;
  }



  .current-openings-bottom .job-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin: 25px auto;
  border: 1px solid #e1e7ef80;
}

.current-openings-bottom .job-card:hover {
  border:1px solid #00336680;
}

.current-openings-bottom .job-header {
  margin-bottom: 16px;
}

.current-openings-bottom .job-header {
      display: flex;
    align-items: center;
    justify-content: space-between;
}

.current-openings-bottom .job-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
      font-weight: 600;
}

.current-openings-bottom .job-meta span {
  margin-right: 16px;
  font-size: 14px;
}
.current-openings-bottom .job-meta span img {
  width: 16px;
  height: 16px;
}

.current-openings-bottom .tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  color: #0e141b;
  font-weight: 500;
}

.current-openings-bottom .full-time {
  background-color: #002f6c;
  color: #fff;
}

.current-openings-bottom .engineering {
  border: 1px solid #ccc;
  background-color: #fff;
}

.current-openings-bottom span.tag.engineering span.engineering {
      border: 1px solid transparent;
}

.current-openings-bottom .job-description {
  font-size: 1rem;
  margin-bottom: 16px;
}

.current-openings-bottom .job-requirements ul {
  list-style-type: disc;
  margin-left: 20px;
  display: grid;
          grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0px 10px;
  padding-left: 0;
}

.current-openings-bottom .job-requirements li {
  font-size: 14px;
  margin: 2px 0;
  position: relative;
}

.current-openings-bottom .job-requirements li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.current-openings-bottom .job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
}


.current-openings-bottom .apply-btn {
  background-color: #002f6c;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.current-openings-bottom .apply-btn:hover {
  background-color: #004494;
}

.current-opening-top {
  text-align: center;
      margin-bottom: 4rem;
}

.current-opening-section {
    background: #f1f5f94d;
}

.app-process-inner {
  max-width: 48rem;
      margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.app-process-bottom {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    display: grid;
    margin-top: 40px;
}

.app-process-bottom .app-process-icon .counter {
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 3rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
        margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.app-process-bottom .app-process-box {
  text-align: center;
}

.app-process-bottom .app-process-box .app-process-title {
  font-size: 1.125rem;
    margin-bottom: .5rem;
    line-height: 1.75rem;
    font-weight: 600;
}

.app-process-inner .title {
    font-size: 48px;
  line-height:1.2;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header .section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}
.current-opening-top .title{
  font-size: 48px;
  line-height:1.2;
    font-weight: 700;
    margin-bottom: 10px;
}
.current-opening-top p{
  font-size:20px;
}
.app-process-inner .title{
  font-size: 48px;
  line-height:1.2;
    font-weight: 700;
    margin-bottom: 10px;
}
.app-process-inner p{
  font-size:20px;
}
.services-section .section-header .section-title span {
        background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.leader_team_section .team-section .title span{
  background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ourServices-section .title_top_section .title span{
  background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.acg-main .title :not(span.leading-title){
  background: linear-gradient(135deg, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-template-about .acg-main .title :not(span.leading-title){
        display: block;
}

.transform-industry-inner .title span{
  background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.current-opening-top .title span, .app-process-inner .title span,
.our_culture_top .title span{
  background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 1440px) {
  .our_culture_top {
      margin-bottom: 3rem;
  }
  
  .our_culture_top p{
    font-size: 18px;
  }
  .our_culture_section .our_culture_bottom {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.5rem;
      display: grid;
  }
  .our_culture_bottom .our_culture_grids .box-title {
      font-size: 1.125rem;
      line-height: 1.5rem;
      font-weight: 600;
      margin-bottom: .8rem;
  }
  .our_culture_bottom .our_culture_grids .icon-img {
      width: 3.5rem;
      height: 3.5rem;
      margin-bottom: 1.5rem;
      line-height: 55px;
  }
  .our_culture_bottom .our_culture_grids .icon-img img {
      width: 1.5rem;
      height: 1.5rem;
  }
  .our_culture_bottom .our_culture_grids p {
    font-size: 15px;
  }
  .current-opening-top .title {
      font-size: 36px;
  }
  .current-opening-top {
      text-align: center;
      margin-bottom: 3rem;
  }
  .app-process-inner .title{
     font-size: 36px;
  }

}
@media (max-width:1199px){
  .our_culture_top p{
    font-size: 14px;
  }
  .current-opening-top .title {
      font-size: 28px;
  }
  .app-process-inner .title{
     font-size: 28px;
  }
}
@media (max-width: 991px) {
  .our_culture_section .our_culture_bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .current-openings-bottom .job-title {
        font-size: 1.125rem;
        margin-bottom: 8px;
        font-weight: 600;
    }
    .current-openings-bottom .job-card {
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        margin: 15px auto;
    }
    .current-openings-bottom .job-card p {
      font-size: 14px;
    }
    .current-openings-bottom .apply-btn {
        padding: 8px 16px;
        font-weight: 400;
        font-size: 12px;
    }
/*     .our_culture_top .title {
        font-size: 2rem;
        margin-bottom: 0;
    } */
    .our_culture_top {
        margin-bottom: 2rem;
    }
/*     .app-process-inner .title {
        font-size: 2rem;
        line-height: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    } */
    .app-process-bottom .app-process-icon .counter {
        width: 2.5rem;
        height: 2.5rem;
        line-height: 2.5rem;
        font-size: 1rem;
    }

}


@media (max-width: 767px) {
/*   .our_culture_top .title {
        font-size: 1.5rem;
  } */
  .our_culture_bottom .our_culture_grids {
      padding: 15px;
  }
  .our_culture_bottom .our_culture_grids .icon-img {
      margin-bottom: 1rem;
  }
  .current-opening-top {
      margin-bottom: 2rem;
  }
  .current-openings-bottom .job-header {
      display: block;
  }
  .current-openings-bottom .job-header .job-tags {
      margin-top: 10px;
  }
  .current-openings-bottom .job-requirements ul {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .app-process-bottom {
      gap: 1rem;
      margin-top: 20px;
  }
  .app-process-bottom .app-process-box p {
    font-size: 14px;
  }
  .app-process-inner .title {
      font-size: 1.5rem;
      line-height: 1rem;
      margin-bottom: 1rem;
  }
  .our_culture_section .our_culture_bottom {
    gap: 1rem;
  }
  .app-process-section .app-process-inner p {
    font-size: 14px;
  }

}

@media (max-width: 575px) {
  .app-process-bottom {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .our_culture_section .our_culture_bottom {
      gap: 1rem;
  }
}


@media (max-width: 479px) {
  .our_culture_section .our_culture_bottom {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .our_culture_top .title, .current-opening-top .title{
    font-size: 24px;
  }
}
  
/* Career Page E */



/* Single Webinars Start  */

.upcoming_webinars-section .press-release-inner .news-card .card-para{
      display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-webinars-banner {
     display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.single-webinars-banner .main-title {
  margin-bottom: 0px;
  color: #fff;
}
.single-webinars-section.bg-inner {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    z-index: 1;
}

.main-solution.main-solution-inner {
    margin-top: 30px;
    margin-bottom: 50px;
}

.main-solution.main-solution-inner .title{
  font-size: 32px;
}

 .main-solution.main-solution-inner .h2, .main-solution.main-solution-inner .h3, .main-solution.main-solution-inner .h4, .main-solution.main-solution-inner .h5, .main-solution.main-solution-inner .h6, 
 .main-solution.main-solution-inner h2, .main-solution.main-solution-inner h3, .main-solution.main-solution-inner h4, .main-solution.main-solution-inner h5, .main-solution.main-solution-inner h6 {
   font-size: 22px;
}

a.link.link-secondary {
      text-decoration: none;
}

/* Single Webinars End  */


/* Technology Business Start */
.technology-services-page {
    position: relative;
    max-height: 110px;
    margin-top: -50px;
    transition: all 0.5s ease;
    z-index: 2;
}
.technology-services-page .logo-slider {
  width: 175px;
  height:110px;
  display:flex;
  justify-content:center;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin: 20px auto;
  position: relative;
}

.technology-services-page .logo-slide {  
    display: flex !important;
  justify-content: center;
  align-items: center;
}
.technology-services-page .slick-dots{
  bottom: 5px;
  left: 50%;
    transform: translateX(-50%);
    transition: all 0.05s ease;
}
.technology-services-page .logo-slide img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}
.technology-services-page .logo-slide.small-logos img{height: 50px; }
.related-posts .blog_left_sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  padding:0 10px;
}
.blog-section .title_top_section {
    text-align: center;
    margin-bottom: 48px;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}


.blog-section .related-posts  .title {font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}
 .blog-section .related-posts .title span{   
     background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-service{
    display: none;
}
.related-service.active-related {
    display: block;
}
.related-service.active-related .first-sec{
  padding:25px;
  margin: 0 auto;
  height: 100%;
}
.related-service.active-related .first-sec h4{
  color: #ffffff;
  margin-bottom:25px;
}

.related-service.active-related .row > .col-lg-6:nth-child(even) {
  background-color: #036;
  color: #fff;
}
.related-service.active-related .row > .col-lg-6:nth-child(even) .btn.primary {
    background-color: #fff;
    color: #1a202c;
    border-radius: 8px;
  border: 1px solid #ffffff;
  transition: all 0.05s ease-in-out;
}
.related-service.active-related .row > .col-lg-6:nth-child(even) .btn.primary:hover{
  background-color: transparent;
    color: #ffffff;
  border: 1px solid #fff;
}
.related-service.active-related .row > .col-lg-6 .btn{
	margin-top: 15px;
}
.related-service.active-related .row > .col-lg-6:nth-child(odd) .btn.primary {
    background-color: transparent;
    color: #ffffff;
  border: 1px solid #fff;
    border-radius: 8px;
  transition: all 0.05s ease-in-out;
}
.related-service.active-related .row > .col-lg-6:nth-child(odd) .btn.primary:hover{
  background-color: #fff;
    color: #1a202c;
  border: 1px solid #ffffff;
}
.related-service.active-related .row > .col-lg-6:nth-child(odd){
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.related-service.active-related .first-sec .container {
    display: flex;
    flex-flow: column nowrap;
    align-items:flex-start;
    height: 100%;
    justify-content:flex-start;
}

.related-service.active-related .first-sec .content-box {
    flex:1;
}
.related-posts .blog_left_sidebar .blog_item .para_content_overly p {
    margin-bottom: 0;
}

.technology_Business {
  background-image: linear-gradient(to right, #1e3a8a, #581c87);
}
.retailSolutions-section {
  background-image: linear-gradient(to right, #14532d, #134e4a);
}

.oil-and-gas-section {
  background-image: linear-gradient(to right, #7c2d12, #7f1d1d);
}
.digitalMarketing-section {
  background-image: linear-gradient(to right, #581c87, #831843);
}

.top-banner-section .top-banner-inner {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
        padding-top: 25px;
    padding-bottom: 25px;
}

.top-banner-section .top-banner-inner .title {
      font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}
.top-banner-section .top-banner-inner .content {
    font-size: 1.25rem;
   line-height: 1.625;
    color: #fff;
    margin-bottom: 0px;
}

.ourServices-section .title_top_section {
    text-align: center;
    margin-bottom: 48px;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.ourServices-section .title_top_section .title {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.ourServicesBox .innerServiceBox {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ourServices-section .ourServicesBox {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    display: grid;
    gap: 32px;
}

.ourServicesBox .innerServiceBox .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
}

.ourServicesBox .innerServiceBox .icon svg, .ourServicesBox .innerServiceBox .icon img {
  width: 100%;
  height: 100%;
}

.ourServicesBox .innerServiceBox .title{
      font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1rem;
        font-weight: 600;
}
.ourServices-section .title_top_section .content {
      font-size: 1rem;
    line-height: 1.75rem;
    margin-bottom: 0px;
}

.ourServices-section {
    background: #fcfdfe;
}

.ready_your_business_section {
  background-color: hsl(210deg 40% 96% / 50%);
}

.pagination-wrap {
  text-align: center;
  margin-top: 40px;
}

.pagination-wrap .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  font-size: 14px;
  color: #333;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination-wrap .page-numbers:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.pagination-wrap .page-numbers.current {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  font-weight: bold;
}

.pagination-wrap .page-numbers.dots {
  cursor: default;
  background: transparent;
  border: none;
}


@media (max-width: 1440px) {
  .top-banner-section .top-banner-inner .title {
        font-size: 2.5rem;
  }
  .top-banner-section .top-banner-inner .content, .ourServices-section .title_top_section .content {
    font-size: 1.125rem;
  }
  .ourServices-section .title_top_section .title {
    font-size: 36px;
  }
}

@media (max-width: 1199px) {
  .ourServices-section .ourServicesBox {
      gap: 20px;
  }
  .ourServicesBox .innerServiceBox {
      padding: 20px;
  }
  .ourServicesBox .innerServiceBox .title {
      font-size: 1.32rem;
      margin-bottom: .75rem;
      font-weight: 600;
  }
  .ourServices-section .title_top_section .title{
    font-size:28px;
  }
}

@media (max-width: 991px) {
  .top-banner-section .top-banner-inner .title {
      font-size: 2rem;
      margin-bottom: 1rem;
  }
  .top-banner-section .top-banner-inner .content, .ourServices-section .title_top_section .content {
    font-size: 1rem;
  }
/*   .ourServices-section .title_top_section .title {
      font-size: 1.75rem;
      margin-bottom: .8rem;
  } */
  .ourServicesBox .innerServiceBox .icon {
      width: 38px;
      height: 38px;
      margin-bottom: 1rem;
  }
  .ourServicesBox .innerServiceBox p {
    font-size: 14px;
  }

}

@media (max-width: 767px) {
  .top-banner-section .top-banner-inner {
      padding-top: 15px;
      padding-bottom: 15px;
  }
  .top-banner-section .top-banner-inner .title {
      font-size: 1.75rem;
      margin-bottom: .8rem;
  }
  .top-banner-section .top-banner-inner .content, .ourServices-section .title_top_section .content {
      font-size: 14px;
      line-height: 1.3rem;
  }
  
  .ourServices-section .title_top_section {
    margin-bottom: 25px;
  }
  .ourServices-section .ourServicesBox {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 15px;
  }
  .ourServicesBox .innerServiceBox .title {
      font-size: 1.25rem;
      margin-bottom: 0rem;
      font-weight: 600;
      line-height: 1.5rem;
  }

}

@media (max-width: 479px) {
  .top-banner-section .top-banner-inner {
      padding-top: 0;
      padding-bottom: 0;
  }
  .ourServices-section .ourServicesBox {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .transform-industry-inner .title {
      font-size: 1.5rem;
  }
  .ourServices-section .title_top_section .title {
      font-size: 1.5rem;
  }

}



/* Technology Business End */


/* Our Client Page S */

.our-clients-banner .across-title{
      background: linear-gradient(135deg, #036, #06c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-section {
  background-color: #f1f5f94d; /* Light background */
  padding: 60px 0;
  text-align: center;
}

.stats-section .stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
    display: grid;
    gap: 32px;
}

.stats-section .stat-item {
  flex: 1 1 200px;
  max-width: 250px;
}

.stats-section .stat-item h2 {
  font-size: 48px;
  color: #043F72; /* Deep blue */
  margin-bottom: 10px;
  font-weight: bold;
}

.stats-section .stat-item p {
  font-size: 16px;
}


.featured-client-section.clients-section{
    background: #fdfdfe;
}

.featured-client-box {
    margin-top: 48px;
}

.featured-client-box .card-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    display: grid;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.featured-client-box .case-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  width: 100%;
  transition: transform 0.3s ease;
}

.featured-client-box .case-card:hover {
   border: 1px solid #00336680;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px #21293c26;
    background: #fff;
}

.featured-client-box .case-card img {
      max-height: 50px;
    margin-bottom: 0px;
    filter: grayscale(100%);
    max-width: 100%;
    height: 100%;
    width: initial;
}
.featured-client-box .case-card:hover img{
  filter: grayscale(0%);
}

.featured-client-box .case-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.featured-client-box .category {
    display: inline-block;
    background: #f1f5f9;
    color: #0e141b;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 999px;
    margin-bottom: 15px;
    font-weight: 600;
}

.featured-client-box .case-card p {
  font-size: 14px;
  margin-bottom: 24px;
  text-align: left;
}

.featured-client-box .services {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.featured-client-box .services span {
    color: #0e141b;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid #e1e7ef;
    font-weight: 600;
}

.featured-client-box .provide-ser-text {
      font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.industries-serve-box {
          grid-template-columns: repeat(3, minmax(0, 1fr));
              gap: 1.5rem;
              display: grid;
}


.industries-serve-box .industries-inner:hover {
    border: 1px solid #00336680;
}

.industries-serve-box .industries-inner {
    border: 1px solid #e1e7ef;
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
}
.industries-serve-box .industries-inner .pro-active {
  margin-bottom: 0px;
  font-size: 14px;
}

.industries-serve-box .industries-inner img,
.industries-serve-box .industries-inner svg {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

.industries-serve-box .industries-inner .title {
    font-size: 16px;
    font-weight: 600;
}

.industries-serve-box .industries-inner .count {
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0;
}


.success-stories-box .cta-section {
  background: linear-gradient(135deg, #0e141b, #036, #06c);
  border-radius: 16px;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.success-stories-box .cta-container h2 {
      font-size: 2.25rem;
    line-height: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.success-stories-box .cta-container p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
      margin-bottom: 2rem;
}

.success-stories-box .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.success-stories-box .btn-primary,
.success-stories-box .btn-secondary {
  background-color: #ffffff;
  color: #1a202c;
  border: 1px solid transparent ;
  padding: 6px 35px;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.success-stories-box .btn-primary:hover{
  background-color: transparent;
    color: #ffffff;
    border: 1px solid #fff;
}
.success-stories-box .btn-secondary:hover {
  background-color: #ffffff;
  color: #1a202c;
  border: 1px solid transparent;
}
.success-stories-box .btn-secondary {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

@media (max-width: 1440px) {
  .stats-section .stat-item h2 {
      font-size: 36px;
      color: #043F72;
      margin-bottom: 5px;
  }
  .stats-section .stat-item p {
      margin-bottom: 0px;
  }
  .featured-client-box .card-grid {
    gap: 20px;
            grid-template-columns: repeat(3, minmax(0px, 1fr));
  }
  .featured-client-box {
      margin-top: 30px;
  }
  .industries-serve-box {
      gap: 1rem;
  }
  .success-stories-box .cta-container h2 {
      font-size: 2rem;
      line-height: 2rem;
      margin-bottom: 10px;
  }
}

@media (max-width: 1199px) {
  .stats-section {
      padding: 40px 0px;
  }
  .featured-client-box .case-card {
      padding: 25px;
  }
  .success-stories-box .cta-section {
      padding: 40px 20px;
  }
  .success-stories-box .cta-container p {
      font-size: 1rem;
      margin-bottom: 1rem;
  }
  .success-stories-box .btn-primary, .success-stories-box .btn-secondary {
    padding: 10px 20px;
  }
  .success-stories-box .cta-container h2 {
      font-size: 1.75rem;
      line-height: 1.5rem;
  }
}

@media (max-width: 991px) {
  .stats-section .stat-item h2 {
      font-size: 28px;
      line-height: 1;
    }
    .stats-section .stat-item p {
        font-size: 14px;
    }
    .featured-client-box .card-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }
    .industries-serve-box .industries-inner {
        padding: 1rem;
    }

}


@media (max-width: 767px) {
  .stats-section .stats-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      display: grid;
      gap: 25px;
  }
  .featured-client-box .card-grid {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .industries-serve-box {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .industries-serve-box .industries-inner img, .industries-serve-box .industries-inner svg  {
      width: 25px;
      height: 25px;
      margin-bottom: 10px;
      gap: .8rem;
  }
  .industries-serve-box .industries-inner .count {
      font-size: 1.25rem;
      line-height: 1.5rem;
  }
  .stats-section .stat-item h2 {
      font-size: 20px;
      line-height: 1;
  }
  .stats-section {
      padding: 20px 0px;
  }
  .featured-client-box .case-card img {
      max-height: 40px;
      margin-bottom: 15px;
      filter: grayscale(100%);
  }
  .featured-client-box .case-card h3 {
      font-size: 18px;
  }

}

@media (max-width: 479px) {
  .industries-serve-box {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .featured-client-box .case-card {
      padding: 15px;
  }
}


/* Home animation */



.background_img_class {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    z-index: 1;
}

.background_img_class::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: -1;
}

.background_img_class .about-group .badge, .background_img_class .acg-main .title, .background_img_class .acg-main .about-content {
  color: #fff !important;
}


/* Blogs S */

.blog_left_sidebar {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    display: grid;
}

.blog_left_sidebar .blog_item_img {
    min-height: 245px;
    height: 245px;
    width: 100%;
    flex: 1;
}

.blog_left_sidebar .blog_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.blog_left_sidebar article.blog_item {
    background: white;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    text-align: left;
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog_left_sidebar .blog_details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog_left_sidebar .blog_details h2 {
  font-size: 22px;
  display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog_details .blog-info-link {
  padding: 0px;
  list-style: none;
  display:flex;
  gap: 25px;
}

.blog_details a {
  text-decoration: none;
  margin-bottom:0;
}

.blog_details a ,date {
  color: #65758b;
}
.blog_details .cat a:hover{
   color: var(--primary-color);
}
.blog_details a p:hover {
  color: var(--primary-color);
}

.blog_item .para_content_overly {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.single_sidebar_widget.popular_post_widget .post_item {
      display: flex;
  align-items: center;
    background: white;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    text-align: left;
    transition: transform 0.3s ease;
    overflow: hidden;
        margin-bottom: 15px;
}
.single_sidebar_widget.popular_post_widget .media-body {
    padding: 10px 20px;
    width: 100%;
}
.single_sidebar_widget.popular_post_widget .media-body a {
  text-decoration: none;
}
.single_sidebar_widget.popular_post_widget .media-body h3 {
        font-size: 16px;
    margin-top: 0;
}

.single_sidebar_widget.popular_post_widget .post_item .post_thumbnail img {
    width: 130px;
    height: 130px;
    object-fit: scale-down;
}
.single_sidebar_widget.popular_post_widget .post_item p{
  margin-bottom: 0;
  font-size: 14px;
}
.single_sidebar_widget.popular_post_widget .post_item img {
    width: 120px;
    height: 120px;
}

@media (max-width: 991px) {
  .blog_left_sidebar {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      display: grid;
  }
  .blog_left_sidebar .blog_details {
      padding: 15px;
  }

}


@media (max-width: 767px) {
  .blog_left_sidebar {
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 1rem;
      display: grid;
  }
  .blog_left_sidebar .blog_details {
      padding: 10px;
  }

}

/* Blogs E */


/* Blogs Single S */

.blog_left_sidebar_single {
    background: white;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    text-align: left;
    transition: transform 0.3s ease;
    overflow: hidden;
}

/*.blog_left_sidebar_single .blog_item_img {
  height: 300px;
}*/

.blog_left_sidebar_single .blog_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}

.blog_left_sidebar_single .blog_details {
  padding: 0px 20px 20px;
}
.blog_left_sidebar .blog_details a.d-inline-block.title {
    flex: 1;
}
.blog_left_sidebar_single .blog_item_img {
    position: relative;
}

.blog_left_sidebar_single .blog_item_img a.blog_item_date {
    padding-left: 0;
    margin-bottom: 0;
    text-align: center;
    display: inline-block;
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    padding: 10px 20px;
    position: absolute;
    left: 10px;
    bottom: 20px;
    text-decoration: none;
    font-size: 14px;
  color: #000000;
}

.blog_left_sidebar_single .blog_item_img a.blog_item_date h3, .blog_left_sidebar_single .blog_item_img a.blog_item_date p {
  margin: 0px;
}



.blog_left_sidebar_single .blog_details .h1, .blog_left_sidebar_single .blog_details h1 {
  font-size: 24px;
  margin-top: 20px;
    margin-bottom: 10px;
}

.blog_left_sidebar_single .blog_details .h2, .blog_left_sidebar_single .blog_details h2 {
  font-size: 26px;
  margin-top: 20px;
  font-weight: 700;
  margin-bottom: 15px;

}
.blog_left_sidebar_single .blog_details .h2 b, .blog_left_sidebar_single .blog_details h2 b,
.blog_left_sidebar_single .blog_details .h3 b, .blog_left_sidebar_single .blog_details h3 b,
.blog_left_sidebar_single .blog_details .h4 b, .blog_left_sidebar_single .blog_details h4 b,
.blog_left_sidebar_single .blog_details .h5 b, .blog_left_sidebar_single .blog_details h5 b,
.blog_left_sidebar_single .blog_details .h2 strong, .blog_left_sidebar_single .blog_details h2 strong,
.blog_left_sidebar_single .blog_details .h3 strong, .blog_left_sidebar_single .blog_details h3 strong,
.blog_left_sidebar_single .blog_details .h4 strong, .blog_left_sidebar_single .blog_details h4 strong,
.blog_left_sidebar_single .blog_details .h5 strong, .blog_left_sidebar_single .blog_details h5 strong{
  font-weight: 700;
}

.blog_left_sidebar_single .blog_details .h3, .blog_left_sidebar_single .blog_details h3 {
  font-size: 20px;
  margin-top: 20px;
    margin-bottom: 10px;
}
.blog_left_sidebar_single .blog_details .h4, .blog_left_sidebar_single .blog_details h4 {
  font-size: 20px;
  margin-top: 20px;
    margin-bottom: 10px;
}
.blog_left_sidebar_single .blog_details .h5, .blog_left_sidebar_single .blog_details h5 {
  font-size: 18px;
  margin-top: 20px;
    margin-bottom: 10px;
}
.blog_left_sidebar_single .blog_details .h6, .blog_left_sidebar_single .blog_details h6 {
  font-size: 18px;
  margin-top: 20px;
    margin-bottom: 10px;
}

html .blog_details :where(img[class*=wp-image-]) {
    margin: 10px 0px;
}

.blog-rightbar.press-release-rightbar .widget_title{
  margin-top: 0px;
      font-size: 20px;
    margin-bottom: 20px;
}




/* Blogs  Single E */

.blog_details a .date,
.blog_details .cat{
  display:flex; 
  gap:5px; 
  align-items:center;
  margin-bottom: 0;
}


.calendly-badge-widget {
    display: none;
}
.press-release-inner .news-footer .share {
    display: none;
}

.privacy-policy-inner .h1, .privacy-policy-inner .h2, .privacy-policy-inner .h3, .privacy-policy-inner .h4, .privacy-policy-inner .h5, .privacy-policy-inner .h6, 
.privacy-policy-inner h1, .privacy-policy-inner h2, .privacy-policy-inner h3, .privacy-policy-inner h4, .privacy-policy-inner h5, .privacy-policy-inner h6 {
    color: #0e141b;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin: 35px 0 10px;
    padding: 0;
}
.privacy-policy-inner > h1:first-child,
.privacy-policy-inner > h2:first-child,
.privacy-policy-inner > h3:first-child,
.privacy-policy-inner > h4:first-child,
.privacy-policy-inner > h5:first-child,
.privacy-policy-inner > h6:first-child {
  margin-top: 0;
}
.privacy-policy-inner h1:first-of-type,
.privacy-policy-inner h2:first-of-type,
.privacy-policy-inner h3:first-of-type,
.privacy-policy-inner h4:first-of-type,
.privacy-policy-inner h5:first-of-type,
.privacy-policy-inner h6:first-of-type {
  margin-top: 0;
}

.search-bar_rightSide .search-form {
      position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.search-bar_rightSide .search-form label {
  width: 80%;
}


.search-bar_rightSide .search-form input{
  background-color: #ecf3ff;
    height: 50px;
    padding: 6px 15px;
    border: 1px solid #ecf3ff;
    width: 100%;
    display: block;
    outline: 0;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.search-bar_rightSide .search-form .search-submit {
      position: absolute;
    right: 0;
    outline: 0;
    bottom: 0;
    height: 50px;
    width: 100px;
    /* line-height: 55px; */
    z-index: 1;
    border: none;
    color: #ffffff;
        background: linear-gradient(135deg, #0e141b, #036, #06c);
    -webkit-transition: 0.6s;
    transition: 0.6s;
}


.Portfolios_slider .portfolio-card img {
    width: 100%;
    padding: 10px;
  }

  .Portfolios_slider .slick-next:before, .Portfolios_slider .slick-prev:before {
    color: #000;
}
@media (max-width:991px){
  .blog_left_sidebar_single .blog_details .h2, .blog_left_sidebar_single .blog_details h2{
    font-size: 22px;
  }
}

@media (max-width:575px){
  .blog_left_sidebar_single .blog_details .h2, .blog_left_sidebar_single .blog_details h2{
    font-size: 20px;
  }
}


/* Testimoanila Page S */

.testimonialPage_main .section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
    }

    .testimonialPage_main .testimonial-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: left;
    }

    .testimonialPage_main .testimonial-card {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      width: 100%;
      max-width: 440px;
      position: relative;
   display: flex;
   flex-direction:column;
    }

  .testimonialPage_main .testimonial-card .testimonial-text {
    flex: 1;
  }

  .testimonialPage_main .testimonial-card.video a{
    position: relative;
  }
  .testimonialPage_main .testimonial-card.video a::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #00000057;
    content: '';
    z-index: 1;
  }
    .testimonialPage_main .testimonial-card.video {
      cursor: pointer;
    }

    .testimonialPage_main .testimonial-card.video{
        position:relative;
        padding: 0;
        border-radius: 10px;
    }
    .testimonialPage_main .testimonial-card.video a > img{
        width:100%;
        border-radius: 10px;
    }
    .testimonialPage_main .testimonial-card.video .client-name {
        position: absolute;
        top: 80%;
        left: 10px;
        color: #fff;
        z-index: 2;
       transition: 0.5s ease;
    }
     
    .testimonialPage_main .testimonial-card.video .video-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
    .video-icon img{
        width: 100px;
        height: 100px;
        transition: 0.5s ease;
    }

    .testimonialPage_main .testimonial-card.video:hover {
      background: #eef;
    }

    .testimonialPage_main .video-container iframe,
    .testimonialPage_main .video-container video {
      width: 100%;
      border-radius: 10px;
    }

    .testimonialPage_main .testimonial-author {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-top: 15px;
    }

    .testimonialPage_main .testimonial-author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }

    /* Modal */
    .video_model_show .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      display: none;
    }

    .video_model_show .modal:target {
      display: flex;
    }

    .video_model_show .modal-content {
      background: #fff;
      padding: 10px;
      border-radius: 10px;
      max-width: 800px;
      width: 90%;
    }

    .video_model_show .modal-content video, .video_model_show .modal-content iframe {
      width: 100%;
      border-radius: 10px;
    }

    .video_model_show .close-modal {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 30px;
      color: white;
      text-decoration: none;
    }

    .testimonialPage_main .testimonial-author h4 {
      font-size: 16px;
      margin-bottom: 0px;
    }
    .testimonialPage_main .testimonial-author p {
      margin-bottom: 0px;
    }


    .contact_addres_section .worldwide-box .locations {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }


  .home-form-right .info-item .mission-title {
    width: 100%;
  }
  .getin-form textarea.wpcf7-form-control.wpcf7-textarea {
      max-height: 180px;
	  vertical-align: bottom;
  }
  @media (max-width: 991px) {
    .mission-control-flex {
        display: block;        
    }
  }

  @media (max-width: 767px) {
    .contact_addres_section .worldwide-box .locations {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .custom-order-two {
      order: 2;
    }
  }



._cUP1np9gMvFQrcPftuf.xahN8AEzyAvQtVj17TPv {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}