@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&amp;family=Poppins:wght@400;500;600;700&amp;display=swap');



/* Global Colors */
:root {
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #212529;
  --default-color-rgb: 33, 37, 41;
  --accent-color: #f1993f;
  --accent-color-rgb: #202127;
  --heading-color: #32353a;
  --heading-color-rgb: 50, 53, 58;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
}

/* Nav Menu Colors */
:root {
  --nav-color: #3a3939;
  --nav-hover-color: #f1993f;
  --nav-dropdown-color: #3a3939;
  --nav-dropdown-hover-color: #f1993f;
  --nav-dropdown-background-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  font-family: "Inter", sans-serif;
  /* background: #fff url(../img/body.png) center center no-repeat; */
  background: #fff;
  font-size: 16px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(var(--accent-color-rgb), 0.7);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

.h2,
h2 {
  font-size: 3rem;
}

.logo-image {
  aspect-ratio: 4.65;
  object-fit: contain;
  object-position: center;
  width: 13.3125rem;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
  max-width: 100%;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {

  color: var(--default-color);
  /* background-color: var(--background-color); */
  padding: 10px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: #48a1a9;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on page scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #e84545;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Scroll Margin Top
------------------------------*/
section {
  scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}

/* Home Page Custom Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.515);
  --nav-hover-color: #ffffff;
}

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #f1993f;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* style.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");

/* Custom Variables */
#nav-menu {
  --primary-color: #f1993f;
  --white: #ffffff;
  --light-grey: #f5f5f7;
  --medium-grey: #6e6e73;
  --ash: #fbfbfd;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Reset styles only for navigation */
#nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#nav-menu a {
  text-decoration: none;
  color: #3a3939;
}



/* Button styles */
.btn {
  display: block;
  text-align: center;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
}

.contact-button:hover{
  background-color: #f1993f;
  transition: all 0.3s ease; 
}
.btn.btn-primary{
  background-color: #f1993f;
  color: #fbfbfd;
  border: 0;

}

.btn.btn-primary:hover{
  background-color: #fbfbfd;
  border: solid #f1993f 2px;
  color: #f1993f;
}
/* Icon styles */
#nav-menu .icon {
  padding: 0.5rem;
  background-color: var(--light-grey);
  border-radius: 10px;
}

/* Logo styles */
#nav-menu .logo {
  margin-right: 1.5rem;
}

/* Main navigation container */
#nav-menu {
  border-bottom: var(--border);
}

#nav-menu .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2rem;
  height: 90px;
  padding: 1.2rem 3rem;
}

/* Menu styling */
#nav-menu .menu {
  position: relative;
  background: var(--white);
}

/* First dropdown menu special styling */
#nav-menu .menu-bar li:first-child .dropdown {
  flex-direction: initial;
  min-width: 480px;
}

#nav-menu .menu-bar li:first-child ul:nth-child(1) {
  border-right: var(--border);
}

#nav-menu .menu-bar li:nth-child(n + 2) ul:nth-child(1) {
  border-bottom: var(--border);
}

/* Typography styles for navigation */
#nav-menu .menu-bar .dropdown-link-title {
  font-weight: 600;
}

#nav-menu .menu-bar .nav-link {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.6px;
  padding: 0.3rem;
  min-width: 60px;
  margin: 0 0.6rem;
}

/* Hover states */
#nav-menu .menu-bar .nav-link:hover,
#nav-menu .dropdown-link:hover {
  color: var(--primary-color);
}

/* Flexbox layouts for navigation components */
#nav-menu .nav-start,
#nav-menu .nav-end,
#nav-menu .menu-bar,
#nav-menu .right-container,
#nav-menu .right-container .search {
  display: flex;
  align-items: center;
}

/* Dropdown styling */
#nav-menu .dropdown {
  display: flex;
  flex-direction: column;
  min-width: 230px;
  background-color: var(--white);
  border-radius: 10px;
  position: absolute;
  top: 36px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.97) translateX(-5px);
  transition: 0.1s ease-in-out;
  box-shadow: var(--shadow);
}

#nav-menu .dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateX(5px);
}

#nav-menu .dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem;
  font-size: 0.95rem;
}

#nav-menu .dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
}

#nav-menu .dropdown-link {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-radius: 7px;
  transition: 0.1s ease-in-out;
}

#nav-menu .dropdown-link p {
  font-size: 0.8rem;
  color: var(--medium-grey);
}

/* Right container styles */
#nav-menu .right-container {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

#nav-menu .right-container .search {
  position: relative;
}

#nav-menu .right-container img {
  border-radius: 50%;
}

/* Search input styling */
#nav-menu .search input {
  background-color: var(--ash);
  border: none;
  border-radius: 6px;
  padding: 0.7rem;
  padding-left: 2.4rem;
  font-size: 16px;
  width: 100%;
  border: var(--border);
}

#nav-menu .search .bx-search {
  position: absolute;
  left: 10px;
  top: 50%;
  font-size: 1.3rem;
  transform: translateY(-50%);
  opacity: 0.6;
}

/* Hamburger menu */
#nav-menu #hamburger {
  display: none;
  padding: 0.1rem;
  margin-left: 1rem;
  font-size: 1.9rem;
}

/* Responsive styles */
@media (max-width: 1100px) {
  #nav-menu #hamburger {
    display: block;
  }

  #nav-menu .container {
    padding: 1.2rem;
  }

  #nav-menu .menu {
    display: none;
    position: absolute;
    top: 87px;
    left: 0;
    min-height: 100vh;
    width: 100vw;
  }

  #nav-menu .menu-bar li:first-child ul:nth-child(1) {
    border-right: none;
    border-bottom: var(--border);
  }

  #nav-menu .dropdown {
    display: none;
    min-width: 100%;
    border: none !important;
    border-radius: 5px;
    position: static;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  #nav-menu .menu.show,
  #nav-menu .dropdown.active {
    display: block;
    z-index: 99999;
  }

  #nav-menu .dropdown ul {
    padding-left: 0.3rem;
  }

  #nav-menu .menu-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 1rem;
    padding: 1rem;
  }

  #nav-menu .menu-bar .nav-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
  }

  #nav-menu .menu-bar li:first-child .dropdown {
    min-width: 100%;
  }

  #nav-menu .menu-bar > li:not(:last-child) {
    padding-bottom: 0.5rem;
    border-bottom: var(--border);
  }
}

@media (max-width: 600px) {
  #nav-menu .right-container {
    display: none;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #f4f4f4;
  color: var(--default-color);
  background: #202127 url(../img/footerbg.svg) center center;
  font-size: 14px;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--default-color-rgb), 0.5);
  font-size: 16px;
  color: rgba(var(--default-color-rgb), 0.5);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(var(--default-color-rgb), 0.8);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: rgba(var(--default-color-rgb), 0.05);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

@media (max-width: 607px) {
  .footer .copyright {
    padding-top: 10px;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(var(--accent-color-rgb), 0.8);
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding-top: 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
}

.section-title h2 {
  font-weight: 700;
  /* position: relative; */
  text-align: left;
  margin-bottom: 20px;
  color: #f1993f;
}

/* .section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
} */

.section-title p {
  margin-bottom: 0;
  text-align: justify;
  color: var(--default-color);
  font-size: 1rem;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/


.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}


.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title nav {
  background-color: rgba(var(--default-color-rgb), 0.05);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(var(--default-color-rgb), 0.3);
}

.productengg {
  padding: 110px 0px;
  background: #202127 url(../img/innerheader/productengg.jpg) center center;
}

.data-ai {
  padding: 110px 0px;
  background: #202127 url(../img/innerheader/data-and-ai.jpg) center center;
}

.cloud-and-devOps {
  padding: 110px 0px;
  background: #202127 url(../img/innerheader/cloud-and-devOps.jpg) center center;
}
.whoweare {
  padding: 110px 0px;
  background: #0a0a0c url(../img/innerheader/whoweare1.jpg) center center;
}

.contacus {
  padding: 110px 0px;
  background: #0a0a0c url(../img/innerheader/contactus.jpg) center center;
}



.white {
  color: #fff;
}

.m-0 {
  margin: 0px !important;
}

@media (max-width: 1199px) {
  .whatwedo .whatwedo-item{
    padding-top: 20rem;
  }
}
@media (max-width: 767px) {
  .whatwedo .whatwedo-item{
    padding-top: 20rem;
    max-width: 230px;
  }
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/



@media (max-width: 948px) {  
  .hero-section {
    max-width: 100%;
    padding: 3rem !important;
    padding-top: 3rem !important;
    padding-bottom: 1rem !important;
    gap: 7.75rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-heading {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
    font-size: 0.7rem !important;
  }

  .hero-cta-button {
    padding: 0.875rem 2rem;
  }
  .services-section {
    padding-top: 6.875rem;
    max-width: 100%;
    margin-top: 2rem;
  }

  .services-title {
    max-width: 100%;
  }

  .services-container {
    max-width: 100%;
    padding-left: 6.375rem;
    padding-right: 6.375rem;
  }

  .service-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}


.hero-cta-button {
  align-self: flex-start;
  border: none;
  border-radius: 4px;
  background-color: rgba(249, 141, 34, 1);
  margin-top: 2rem;
  padding: 0.875rem 2rem;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
}

.hero-cta-button:hover {
  background-color: rgba(229, 121, 14, 1);
}

.hero-cta-button:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}


.hero-section {
  align-items: center;
  background-color: #f5f7fa;
  display: flex;
  width: 100%;
  padding: 6rem;
  padding-top: 10rem;
  padding-bottom: 12rem;
  gap: 7.75rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-content {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin: auto 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1;
  flex-basis: 0%;
}

.hero-text {
  width: 100%;
}

.hero-heading {
  color: rgba(26, 54, 93, 1);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.75rem;
  margin: 0;
}

.hero-description {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 0;
}
.hero-image {
  aspect-ratio: 0.96;
  object-fit: contain;
  object-position: center;
  width: 24.4375rem;
  align-self: stretch;
  min-width: 240px;
  margin: auto 0;
}




.services-section {
  text-align: center;
  padding: 2rem;
  padding-top: 5rem;
}

.services-title {
  width: 100%;
  font-size: 2.25rem;
  color: #1a365d;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  margin: 0 auto;
  padding: 2rem;
  padding-top: 4rem;
}

.service-card {
  flex: 1 1 400px;
  max-width: 400px;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 0.5rem;
border: 1px solid #ECECEC;

background: var(--Neutral-White, #FFF);
box-shadow: 0px 2px 4px 0px rgba(171, 190, 209, 0.20);
}

.service-header {
  align-self: stretch;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.service-icon {
  aspect-ratio: 1.16;
  object-fit: contain;
  object-position: center;
  width: 4.0625rem;
  align-self: center;
}

.service-title {
  margin-top: 1rem;
  font-size: 1.75rem;
  color: #1a365d;
  font-weight: 700;
  line-height: 2.25rem;
}

.service-description {
  color: #6b7280;
  line-height: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-align: center;
}

.read-more-link {
  color: #f98d22;
  line-height: 1;
  margin-top: 8px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  align-self: center;
}

.read-more-link:hover {
  text-decoration: underline;
}

.read-more-link:focus {
  outline: 2px solid #f98d22;
  outline-offset: 2px;
}

.about-section {
  padding-top: 6.875rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.about-image {
  max-width: 100%;
  height: auto;
  flex: 1 1 300px;
}

.content-container {
  flex: 1 1 400px;
  max-width: 600px;
}

.text-content {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .about-image,
  .content-container {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
}

/* Achievements section styles */
.deliver-achievements-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #f5f7fa;
  margin-top: 6.875rem;
  width: 100vw;
  padding: 4rem 6.375rem;
  gap: 2.5rem 6.25rem;
  flex-wrap: wrap;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
}

/* Section heading styles */
.deliver-achievements-content {
  align-self: stretch;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  overflow: hidden;
  font-size: 16px;
  width: 540px;
  flex-shrink: 0;
}

.deliver-section-title {
  width: 408px;
  max-width: 100%;
  overflow: hidden;
  font-size: 2.25rem;
  color: #1a365d;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.deliver-section-description {
  color: #1f2937;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-top: 1rem;
  letter-spacing: -0.01em;
}

.deliver-button-container {
  display: flex;
  margin-top: 1rem;
  width: 100%;
  padding-top: 2rem;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  font-weight: 500;
  text-align: center;
  justify-content: flex-start;
}

.deliver-cta-button {
  align-self: stretch;
  border-radius: 4px;
  background-color: rgba(249, 141, 34, 1);
  padding: 0.875rem 2rem;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* Achievements grid styles */
.deliver-achievements-grid {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  flex-grow: 0;
  width: fit-content;
}

.deliver-grid-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  overflow: hidden;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
}

.deliver-grid-row:last-child {
  margin-top: 3rem;
}

.deliver-achievement-item {
  align-self: stretch;
  display: flex;
  min-width: 120px;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
  width: calc(35% - 22px);
}

.deliver-achievement-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 3rem;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

.deliver-achievement-content {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  overflow: hidden;
  width: calc(100% - 64px);
}

.deliver-achievement-title {
  color: #1a365d;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.deliver-achievement-description {
  color: #717171;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-top: 0.25rem;
  letter-spacing: -0.01em;
}

/* Responsive styles */
@media (max-width: 991px) {
  .deliver-achievements-section {
    max-width: 100%;
    padding: 40px 24px;
    margin-top: 40px;
    justify-content: center;
  }

  .deliver-achievements-content {
    max-width: 100%;
  }

  .deliver-section-description {
    max-width: 100%;
  }

  .deliver-button-container {
    max-width: 100%;
  }

  .deliver-cta-button {
    padding-left: 20px;
    padding-right: 20px;
  }

  .deliver-achievements-grid {
    max-width: 100%;
    width: 100%;
  }

  .deliver-grid-row {
    max-width: 100%;
  }

  .deliver-grid-row:last-child {
    max-width: 100%;
    margin-top: 40px;
  }

  .deliver-achievements-content {
    width: 100%;
    max-width: 540px;
  }

  .deliver-achievement-item {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .deliver-achievements-section {
    padding: 32px 20px;
  }

  .deliver-section-title {
    font-size: 32px;
  }

  .deliver-achievement-title {
    font-size: 24px;
  }

  .deliver-achievement-item {
    width: 100%;
  }
}

.transform-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem;
}

.transform-image {
  flex: 1 1 27.625rem;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 2rem;
}

.transform-content {
  flex: 1 1 37.5625rem;
  max-width: 100%;
}

.transform-title {
  color: var(--primary-color);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.transform-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #4a4a4a;
}

.transform-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.transform-button:hover,
.transform-button:focus {
  background-color: #e07b1e;
  outline: none;
}

.transform-button:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .transform-section {
      flex-direction: column;
      padding: 1rem;
  }

  .transform-image,
  .transform-content {
      flex-basis: 100%;
  }

  .transform-title {
      font-size: 1.75rem;
  }

  .transform-button {
      width: 100%;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.responsive-heading {
    font-size: 2.5rem;
    line-height: 1.2;
}

@media (max-width: 1200px) {
    .responsive-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .responsive-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .responsive-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .responsive-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-container {
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .service-title{
      font-size: 1.25rem;
    }
}


.achievements {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--Neutral-Silver, #f5f7fa);
  width: 100%;
  max-width: 100vw;
  gap: 40px 100px;
  flex-wrap: wrap;
  padding: 64px 102px;
  margin-top: 110px;
  box-sizing: border-box;
}

.section-content {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  max-width: 100%;
  flex-direction: column;
  overflow: hidden;
  font-size: 16px;
  justify-content: start;
  width: 540px;
  margin: auto 0;
}


.section-description {
  color: #1f2937;
  font-weight: 400;
  line-height: 24px;
  margin-top: 16px;
}

.cta-wrapper {
  display: flex;
  margin-top: 16px;
  width: 100%;
  padding-top: 32px;
  flex-direction: column;
  align-items: start;
  color: var(--Neutral-White, #fff);
  font-weight: 500;
  text-align: center;
  justify-content: start;
}

.cta-button {
  border-radius: 4px;
  background-color: rgba(249, 141, 34, 1);
  gap: 10px;
  align-self: stretch;
  padding: 14px 32px;
}

.achievement-counts {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  max-width: 100%;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: start;
  margin: auto 0;

}

.count-row {
  display: flex;
  align-items: center;
  gap: 40px 44px;
  overflow: hidden;
  justify-content: start;
  flex-wrap: wrap;
}

.count-item {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 2rem 2.75rem;
  padding: 2rem;
  justify-content: start;
  margin: auto 0;
}

.count-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 48px;
  align-self: stretch;
  overflow: hidden;
  margin: auto 0;
}

.count-details {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: start;
  width: 201px;
  margin: auto 0;
}

.count-number {
  color: #1a365d;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.count-label {
  color: var(--Neutral-Grey, #717171);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 991px) {
  .achievements {
    max-width: 100%;
    margin-top: 40px;
    padding: 0 20px;
  }

  .section-content {
    max-width: 100%;
  }

  .section-description {
    max-width: 100%;
  }

  .cta-wrapper {
    max-width: 100%;
  }

  .cta-button {
    padding: 0 20px;
  }

  .achievement-counts {
    max-width: 100%;
  }

  .count-row {
    max-width: 100%;
  }

  .count-row:last-child {
    margin-top: 40px;
  }
}

@media (max-width: 1603px) {
  .achievements {
    justify-content: center;
    text-align: center;
    padding: 64px 2rem;
  }
  
  .section-content {
    align-items: center;
  }
  
  .cta-wrapper {
    align-items: center;
  }
  
  .achievement-counts {
    align-items: center;
  }
  
  .count-row {
    justify-content: center;
  }
}
















/* About Section - Home Page
------------------------------*/
.about {
  --background-color: #f4f4f4;
}

.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: rgba(var(--accent-color-rgb), 0.05);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  padding: 20px;
  box-shadow: 0 1px 6px rgb(32 33 36 / 10%);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  background-color: #fff;
}

.about .icon-box img {
  width: 100%;
  border-radius: 8px;
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  margin-top: 15px;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/* Stats Section - Home Page
------------------------------*/
.stats {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  position: relative;
  padding: 120px 0;
}

.stats img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.stats:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.6);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.stats .container {
  position: relative;
  z-index: 3;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--default-color-rgb), 0.6);
}



/* what we do Section - Home Page
------------------------------*/
.h3, h3 {
  font-size: 1.75rem;
}

.commonbg {
  padding: 30px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgb(32 33 36 / 10%);
}
.p70{
  padding: 70px 30px;
}
.commonbg img {
  width: 100%;
}
.commonbg p strong{
  color: #4da3ab;
  font-weight: 500;
}
.whatwedo-wrap {
  padding: 30px;
  background: #202127 url(../img/sectionbg.png) center center;
  border-radius: 16px;
  max-height: 600px;
  position: relative;
}

.whatwedo-wrap::after {
  content: "";
  background: #202127 url(../img/line-shade.png) center center;
}

.whatwedo .whatwedo-item {
  color: #fff;
}

.spacer-100 {
  height: 150px;
}

.spacer-50 {
  height: 50px;
}

.whatwedo .whatwedo-item+.whatwedo-item {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .whatwedo .whatwedo-item+.whatwedo-item {
    margin-top: 40px;
  }

  .spacer-100 {
    height: 50px;
  }
}

.whatwedo .whatwedo-item h3 {
  font-weight: 700;
  font-size: 26px;
  color: #fff;
}

.whatwedo .whatwedo-item .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
}

.whatwedo .whatwedo-item .btn-get-started:hover {
  background-color: rgba(var(--accent-color-rgb), 0.9);
}

.whatwedo .whatwedo-item ul {
  list-style: none;
  padding: 0;
}

.whatwedo .whatwedo-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.whatwedo .whatwedo-item ul li:last-child {
  padding-bottom: 0;
}

.whatwedo .whatwedo-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.whatwedo-img {
  text-align: center;
}

.whatwedo .whatwedo-item img {
  /* border: 6px solid var(--background-color);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1); */
  width: 80%;
  padding: 5rem;
}

.whatwedo .whatwedo-item .whatwedo-img-bg {
  position: relative;
  min-height: 500px;
}
.tbits-bg-1-wave {
  background: #1f3042;
  background-position: center center;
  background-size: cover;
  background: #202127 url(../img/sectionbg2.jpg) center center;
}




.paragraph h2{
  color: #fff;
}
@media (max-width: 640px) {
  .whatwedo .whatwedo-item .whatwedo-img-bg {
    min-height: 300px;
  }
}

.whatwedo .whatwedo-item .whatwedo-img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.whatwedo .whatwedo-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.whatwedo .whatwedo-item .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.whatwedo .whatwedo-item .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}


/* end what we do */

/* data ai page */


.dataAiBox {
  padding: 30px;
  background: #140E0E url(../img/line-shade.png) center center;
  border-radius: 16px;
  max-height: 600px;
  position: relative;
}

.location2 {
  padding: 220px 30px;
  background: #48A1A9 url(../img/location.jpg) center center;
  border-radius: 16px;
  max-height: 600px;
  position: relative;
}



/* Services Section - Home Page
------------------------------*/
.services .service-item {
  position: relative;
  padding-top: 40px;
}

.services .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(var(--default-color-rgb), 0.1);
}

.services .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #dc463b;
  border-right: 5px solid var(--background-color);
}

.services .service-item .icon {
  width: 56px;
  height: 56px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}

.services .service-item .icon i {
  color: rgba(var(--default-color-rgb), 0.7);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: rgba(var(--accent-color-rgb), 0.3);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .title a:hover {
  color: var(--accent-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  color: var(--default-color);
}

section.services p {
  color: var(--default-color);
}

/* Features Section - Home Page
------------------------------*/
.features .features-item {
  color: rgba(var(--default-color-rgb), 0.8);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {

  text-align: left;
}

.features .features-item .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
}

.features .features-item .btn-get-started:hover {
  background-color: rgba(var(--accent-color-rgb), 0.9);
  box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
  color: var(--accent-color);

}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}
.features .features-item ul li::before {
  content: ">";
  padding-right: 16px;
  /* content: "\f058";
  font-family: "font awesome 5 free";
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 17px;
  color: #00a0e3; */
}
.featurelist {
  border: 1px solid #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}



.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item img {
  border: 6px solid var(--background-color);
}

.features .features-item .features-img-bg {
  position: relative;
  min-height: 500px;
}

.testingServices{
    border: 0px solid red;
    padding: 20px;
    border-radius: 8px;
    max-height: 294px;
    margin-bottom: 30px;
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
  }
.testingServicesBox h2{
  font-size: 2.5rem;
  margin-bottom: 30px;

}
  .testingServices img{
    width: 40%;
    margin-bottom: 30px;
  }

  .dataai_img img{
    width: 80%;
  }
  ul.ullist {
    font-size: 16px;
    line-height: 50px;
}
@media (max-width: 640px) {
  .features .features-item .features-img-bg {
    min-height: 100px;
  }
}

.features .features-item .features-img-bg img {
  /* position: absolute; */
  inset: 0;
  display: block;
  /* height: 100%; */
  -o-object-fit: cover;
  object-fit: cover;
}

.features .features-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.features .features-item .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.features .features-item .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}


/* Contact Section - Home Page
------------------------------*/
.contact .info-item {
  background: rgba(var(--default-color-rgb), 0.03);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: rgba(var(--default-color-rgb), 0.03);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--background-color);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: rgba(var(--background-color-rgb), 0.5);
  border-color: rgba(var(--default-color-rgb), 0.2);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::-moz-placeholder,
.contact .php-email-form input[type=email]::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(var(--accent-color-rgb), 0.8);

  box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
  color: var(--accent-color);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
input::placeholder {
  color: red;
} 
@media (max-width: 768px) {

  .contact .php-email-form {
    padding: 0px;
  }
}

/* @media (max-width: 640px) {
  .contact .info-item {
    padding: 0px;
  }
} */




/* Faq Section - Home Page
------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: rgba(var(--default-color-rgb), 0.7);
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(var(--default-color-rgb), 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  color: rgba(var(--default-color));
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.ullibox ul {
  margin-top: 20px;
  padding-left: 20px !important;
}

.ullibox ul li {
  list-style-type: circle;
  line-height: 1.5;
  text-align: left;
}


/*--------------------------------------------------------------
# Cloud & DevOps
--------------------------------------------------------------*/
/* BCloud & DevOps
------------------------------*/
.cloud .posts-list article {
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.cloud .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.cloud .posts-list .post-category {
  font-size: 16px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 10px;
}

.cloud .posts-list h2 {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.cloud .posts-list .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.cloud .posts-list .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.cloud .posts-list .title a:hover {
  color: var(--accent-color);
}

.cloud .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.cloud .posts-list .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.cloud .posts-list .post-date {
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 0;
}

.cloud .pagination {
  margin-top: 30px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.cloud .pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cloud .pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.cloud .pagination li a {
  color: rgba(var(--default-color-rgb), 0.6);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloud .pagination li.active,
.cloud .pagination li:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.cloud .pagination li.active a,
.cloud .pagination li:hover a {
  color: var(--contrast-color);
}

.expBox{
  padding: 0px;

}
.expBox .r-g-card{
  padding: 20px;
  text-align: center;
  background: #fff;
}
.expBox .r-g-card .imagesicons img{
  width: 43%;
}
.expBox h3{
  font-size: 60px;
  text-align: center;
}

.contact .section-title {
    max-width: 650px;
    padding: 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.contact .section-title h3 {
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.contact .section-title p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

@media (max-width: 992px) {
    .contact .section-title {
        text-align: center;
        padding: 0 15px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .contact .section-title h2 {
        font-size: 1.7rem;
    }
    
    .contact .section-title p {
        max-width: 100%;
        font-size: 0.9rem;
        text-align: center;
    }
}





.value-benefits {
  padding: 80px 0;
}

.value-benefits .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 144px;
}

.value-benefits .image-wrapper {
  flex-shrink: 0;
}

.value-benefits .image-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}

.value-benefits .content-wrapper {
  flex: 1;
}

.value-benefits h2 {
  color: #1a365d;
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 32px;
}

.value-benefits .benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.value-benefits .benefits-list li {
  background-color: rgba(249, 141, 34, 0.09);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 25px;
  color: #1f2937;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  padding: 12px 16px;
}

@media (max-width: 991px) {
  .value-benefits .container {
    flex-direction: column;
    padding: 0 72px;
  }

  .value-benefits .content-wrapper {
    width: 100%;
  }

  .value-benefits h2 {
    font-size: 32px;
    line-height: 1.25;
  }
}

@media (max-width: 640px) {
  .value-benefits .container {
    padding: 0 24px;
  }

  .value-benefits .image-wrapper {
    width: 100%;
  }

  .value-benefits h2 {
    font-size: 28px;
    line-height: 1.29;
  }

  .value-benefits .benefits-list {
    gap: 12px;
  }

  .value-benefits .benefits-list li {
    width: 100%;
    text-align: center;
  }
}


.testing-services {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, sans-serif;
  padding-left: 15rem;
  padding-right: 15rem;
  padding-top: 7.5rem;
}

@media (max-width: 991px) {
  .testing-services {
    padding: 1.2rem;
  }
}

.testing-services .services-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  min-width: 240px;
  min-height: 600px;
  width: 100%;
  margin: auto 0;
}

@media (max-width: 991px) {
  .testing-services .services-container {
    max-width: 100%;
  }
}

.testing-services .section-title {
  align-self: flex-start;
  color: #1a365d;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 991px) {
  .testing-services .section-title {
    max-width: 100%;
  }
}

.testing-services .services-grid {
  display: flex;
  margin-top: 32px;
  width: 100%;
  gap: 3rem;
  text-align: center;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .testing-services .services-grid {
    max-width: 100%;
  }
}

.testing-services .service-card {
  border-radius: 8px;
  background-color: #fff;
  position: relative;
  display: flex;
  min-width: 300px;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  flex-basis: 0%;
  padding: 16px 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.testing-services .service-header {
  z-index: 0;
  display: flex;
  width: 100%;
  flex-direction: column;
  font-size: 24px;
  color: #1a365d;
  font-weight: 600;
  line-height: 32px;
  justify-content: flex-start;
}

.testing-services .service-divider {
  min-height: 1px;
  margin-top: 12px;
  width: 100%;
  border: 1px solid #000;
}

.testing-services .service-content {
  z-index: 0;
  display: flex;
  margin-top: 20px;
  width: 100%;
  flex-direction: column;
  font-size: 16px;
  color: #1f2937;
  font-weight: 400;
  line-height: 24px;
  justify-content: flex-start;
}

.testing-services .service-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
}

.testing-services .service-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin: auto 0;
}

.testing-services .service-description {
  align-self: stretch;
  flex: 1;
  flex-basis: 0%;
  margin: auto 0;
}

.testing-services .service-number {
  border-radius: 50px;
  background-color: #f98d22;
  position: absolute;
  z-index: 0;
  min-height: 38px;
  width: 38px;
  color: #fff;
  text-align: center;
  letter-spacing: -0.54px;
  height: 38px;
  right: -19px;
  top: -16px;
  padding: 0 9px;
  font: 700 18px/38px GT Walsheim Pro, -apple-system, Roboto, Helvetica, sans-serif;
  border: 1px solid #fff;
}

.testing-services .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.who-are-we-section {
  background-color: rgba(66, 138, 162, 0.06);
  padding: 96px 0;
}

.who-are-we-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 124px;
}

.who-are-we-section .content {
  flex: 1;
}

.who-are-we-section h2 {
  color: #1a365d;
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}

.who-are-we-section p {
  color: #6b7280;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.who-are-we-section .image-wrapper {
  flex-shrink: 0;
}

.who-are-we-section img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .who-are-we-section {
    padding: 48px 0;
    padding: 2rem;
  }

  .who-are-we-section .container {
    flex-direction: column;
    gap: 48px;
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .who-are-we-section h2 {
    font-size: 32px;
  }

  .who-are-we-section p {
    font-size: 14px;
  }
}


.org-structure {
  display: flex;
  padding: 7.5rem 0;
}
.org-structure-content {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}
.org-image-container {
  flex: 1;
  max-width: 414px;
}
.org-image {
  width: 100%;
  height: auto;
  max-width: 414px;
}
.org-text-container {
  flex: 1;
  max-width: 601px;
}
.org-text-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.org-title {
  color: #1a365d;
  font: 700 36px/1.2 "Inter", sans-serif;
  margin: 0;
}
.org-description {
  color: #1f2937;
  font: 400 16px/1.5 "Inter", sans-serif;
  margin: 0;
}
@media (max-width: 991px) {
  .org-structure-content {
      flex-direction: column;
      gap: 32px;
  }
  .org-image-container,
  .org-text-container {
      max-width: 100%;
      padding: 2rem;
  }
}
@media (max-width: 640px) {
  .org-title {
      font-size: 28px;
  }
  .org-description {
      font-size: 14px;
  }
}

@media (max-width: 991px) {

.features .section-title{
  padding-top: 2rem;
}
}

.how-we-deliver {
  padding: 80px 0;
}

.how-we-deliver .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 144px;
}

.how-we-deliver .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 0px;
}

.how-we-deliver .image-wrapper {
  flex-shrink: 0;
}

.how-we-deliver .image-wrapper img {
  max-width: 100%;
  height: auto;
}

.how-we-deliver .text-content {
  max-width: 601px;
}

.how-we-deliver h2 {
  color: #f1993f;
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 16px;
}

.how-we-deliver p {
  color: #1f2937;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 991px) {
  .how-we-deliver .container {
    padding: 0 64px;
  }

  .how-we-deliver .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .how-we-deliver .text-content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .how-we-deliver .container {
    padding: 0 24px;
  }

  .how-we-deliver h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .how-we-deliver p {
    font-size: 14px;
    line-height: 22px;
  }
}




.process-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 15rem;
  padding-right: 15rem;
}
.process-container .process-title {
  color: #1a365d;
  text-align: center;
  font: 600 36px/1 Inter, sans-serif;
}
@media (max-width: 991px) {
  .process-container .process-title {
    max-width: 100%;
  }
}
.process-container .process-steps {
  display: flex;
  margin-top: 56px;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .process-container .process-steps {
    max-width: 100%;
    margin-top: 40px;
  }
}
.process-container .step-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 40px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .process-container .step-wrapper {
    max-width: 100%;
  }
}
.process-container .step-content {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  font-family: Inter, sans-serif;
  justify-content: flex-start;
  flex: 1;
  flex-basis: 0%;
  margin: auto 0;
  padding: 0 8px;
}
@media (max-width: 991px) {
  .process-container .step-content {
    max-width: 100%;
  }
}
.process-container .step-title {
  color: #1a365d;
  text-align: right;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 991px) {
  .process-container .step-title {
    max-width: 100%;
  }
}
.process-container .step-details {
  align-self: flex-end;
  display: flex;
  margin-top: 24px;
  width: 427px;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-end;
  font-size: 16px;
  color: #1f2937;
  font-weight: 400;
  justify-content: center;
}
.process-container .detail-item {
  align-self: stretch;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .process-container .detail-item {
    max-width: 100%;
  }
}
.process-container .detail-text {
  align-self: stretch;
  margin: auto 0;
}
.process-container .detail-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin: auto 0;
}
.process-container .step-number {
  border-radius: 50px;
  background-color: rgba(249, 141, 34, 1);
  align-self: stretch;
  min-height: 38px;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  text-align: center;
  letter-spacing: -0.54px;
  width: 38px;
  height: 38px;
  margin: auto 0;
  padding: 0 9px 0 10px;
  font: 700 18px/38px GT Walsheim Pro, -apple-system, Roboto, Helvetica, sans-serif;
  border: 1px solid rgba(0, 0, 0, 1);
}
@media (max-width: 991px) {
  .process-container .step-number {
    white-space: initial;
  }
}
.process-container .step-image {
  aspect-ratio: 1.72;
  object-fit: contain;
  object-position: center;
  width: 488px;
  align-self: stretch;
  min-width: 240px;
  margin: auto 0;
}
@media (max-width: 991px) {
  .process-container .step-image {
    max-width: 100%;
  }
}





.accordion-container {
  margin: 0 auto;
  padding: 4rem;
  width: 48rem;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #f1993f;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #f1993f;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #f1993f;
  border: 1px solid #f1993f;
}

.accordion button .accordion-title {
  padding: 1rem 1.5rem 1rem 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #f1993f;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 30rem;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;

}
@media (max-width: 991px) {
  .accordion-title{
    max-width: 200px;
  }
}


.product-engineering {
  background-color: #fff;
  display: flex;
  align-items: center;
  font-family: Inter, sans-serif;
  justify-content: space-between;
}

.product-engineering .content-wrapper{
  padding-left: 20rem;
  padding-right: 20rem;
  display: flex;
  gap: 5rem;
}

@media (max-width: 991px) {
  .product-engineering {
    padding: 0 20px;
  }
}
@media (max-width: 991px){
  .product-engineering .content-wrapper{
    padding: 1rem;
    flex-direction: column;
  }
}
.product-engineering .text-content {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  flex-basis: 0%;
  margin: auto 0;
}

@media (max-width: 991px) {
  .product-engineering .text-content {
    max-width: 100%;
  }
}

.product-engineering .section-title {
  color: #1a365d;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  text-align: start;
}

@media (max-width: 991px) {
  .product-engineering .section-title {
    max-width: 100%;
  }
}

.product-engineering .section-description {
  color: #1f2937;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 16px;
  min-width: 400px;
}

@media (max-width: 991px) {
  .product-engineering .section-description {
    max-width: 100%;
    padding: 0;
  }
}

.product-engineering .process-image {
  aspect-ratio: 1.43;
  object-fit: contain;
  object-position: center;
  width: 471px;
  align-self: stretch;
  min-width: 240px;
  margin: auto 0;
}

@media (max-width: 1620px) {
  .product-engineering .process-image {
    max-width: 100%;
  }
}

.product-engineering .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}




.platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
}
.platforms-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  min-width: 240px;
  width: 100%;
}
.platforms-title {
  color: #1a365d;
  font: 600 36px/1 Inter, sans-serif;
  text-align: center;
}
.platforms-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  width: 100%;
}
.platform-logo {
  object-fit: contain;
  object-position: center;
}
.platforms visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 991px) {
  .platforms {
    padding: 20px;
  }
  .platforms-container,
  .platforms-title,
  .platforms-grid {
    max-width: 100%;
  }
}