.section-container {
    display: flex; 
    justify-content: space-between; 
    padding: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  
    margin-top: 30px; 
    margin-bottom: 20px;
    background-color: #FC7F01;
}
.section {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    width: 30%; 
    padding: 15px;
    box-sizing: border-box; 
}
.section-header {
    display: flex;
    align-items: center; 
    margin-bottom: 10px; 
}
.section i {
    font-size: 30px; 
    color: #FFFFFF; 
    margin-right: 10px;
}
.section h3 {
    margin: 0;
    color: #FFFFFF;
    font-size: 20px; 
}
.para {
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF;
    margin-top: 5px;
    margin-bottom: 0; 
}
/* Responsive Design */

/* Tablets (screen width between 600px and 900px) */
@media (max-width: 900px) {
.section-container {
flex-direction: column;
padding: 40px;
}

.section {
width: 100%; 
margin-bottom: 20px; 
}
}

/* Mobile devices (screen width below 600px) */
@media (max-width: 600px) {
.section-container {
padding: 20px;
}

.section {
width: 100%; 
margin-bottom: 15px; 
}

.section-header {
flex-direction: column; 
align-items: flex-start;
}

.section i {
font-size: 25px; 
margin-bottom: 10px;
}

.section h3 {
font-size: 18px; 
}

.para {
font-size: 14px; 
}
}


.faq-container {
  padding: 0px 27px 70px 20px;
}

.d-flex {
  display: flex !important;
  align-items: flex-start; 
  justify-content: flex-start; 
}


.d-flex.flex-column {
  flex-direction: column; 
  align-items: flex-start; 
  justify-content: flex-start; 
}
/*========================About Us=================*/
/* General styling */
.aboutus-container {
  padding: 1px 165px 30px 275px;
}

.d-flex {
  display: flex !important;
  align-items: flex-start; 
  justify-content: flex-start; 
}


.d-flex.flex-column {
  flex-direction: column;
  align-items: flex-start; 
  justify-content: flex-start; 
}

.card-img-about-us {
  margin-left: 50px; 
}

.card-img-about-us img {
  width: 300px;
  height: auto;
  display: block;
  max-width: 100%;
}

/* Heading styling */
h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 64px;
  color: #323d47;
  margin: 0;
}


.ourwork-description {
  color: #323d47;
  font-size: 16px;
  font-weight: 400;
  opacity: .6;
  line-height: 26px;
  margin: 0; 
}

.btn-dark {
  background-color: #FC7F01;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  margin-top: 20px; 
}


.mt-auto {
  margin-top: auto;
}

/* Responsive styles for medium to large screens (desktops) */
@media screen and (max-width: 1200px) {
  .aboutus-container {
      padding: 80px 80px; 
  }

  .card-img-about-us img {
      width: 450px; 
  }
}

/* Responsive styles for tablets and below */
@media screen and (max-width: 768px) {
  .aboutus-container {
      padding: 60px 20px; 
  }

  .d-flex {
      flex-direction: column; 
      align-items: flex-start; 
  }

  .card-img-about-us {
      margin-left: 0; 
      margin-bottom: 20px; 
      width: 80%; 
  }

  .card-img-about-us img {
      width: 100%;
  }

  h2 {
      font-size: 36px;
      line-height: 48px;
  }

  .ourwork-description {
      font-size: 14px;
      line-height: 22px;
  }

  .btn-dark {
      width: 100%;
      text-align: center;
  }
}

/* Responsive styles for small devices (smartphones) */
@media screen and (max-width: 480px) {
  .aboutus-container {
      padding: 40px 10px; 
  }

  .card-img-about-us {
      margin-left: 0; 
      margin-bottom: 15px; 
      width: 100%; 
  }

  .card-img-about-us img {
      width: 100%; 
  }

  h2 {
      font-size: 28px;
      line-height: 36px;
  }

  .ourwork-description {
      font-size: 12px;
      line-height: 18px;
  }

  .btn-dark {
      width: 100%;
      font-size: 14px;
  }
}

/* faq*/
/* Container Styling */
.faq-container {
width: 60%;
max-width: 1000px;
margin: 0 auto;
padding: 20px;
border-radius: 8px;
}
#headingOne,#headingTwo,#headingThree{
margin-bottom: 0px!important;
}

/* Heading Styling */
.faq-heading {
text-align: center;
margin-bottom: 40px;
font-size: 38px;
font-weight: 700;
line-height: 64px;
color: #323d47;
}

/* Accordion Styles */
.accordion {
display: flex;
flex-direction: column;
}

.accordion-item {
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 8px;
}

.accordion-header {
background-color: #f1f1f1;
padding: 10px 15px; 
font-size: 18px;
font-weight: 600;
cursor: pointer;
text-align: left;
border-radius: 8px;
transition: background-color 0.3s ease;
display: flex;
justify-content: space-between;  
align-items: center;  
}

/* Accordion Button Styles */
.accordion-button {
background: none;
border: none;
width: 100%;
display: flex;
justify-content: space-between; 
font-size: 18px;
padding: 0;
cursor: pointer;
}

/* Plus/Minus Icon Styling */
.accordion-button .icon {
margin-left: 10px; 
font-size: 20px;
}

/* Accordion Body */
.accordion-body {
display: none;
padding: 15px;
background-color: #f9f9f9;
font-size: 16px;
color: #333;
border-top: 1px solid #ddd;
border-radius: 0 0 8px 8px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
.faq-heading {
font-size: 32px;
line-height: 48px;
}

.accordion-header {
font-size: 16px;
}

.accordion-body {
font-size: 14px;
}
}

@media (max-width: 480px) {
.faq-heading {
font-size: 28px;
line-height: 40px;
}

.accordion-header {
font-size: 14px;
}

.accordion-body {
font-size: 12px;
}
}
/* Increase mission icon size for mobile view */
@media screen and (max-width: 768px) {
.card-img-about-us img {
width: 250px; 
}
}

/* Align heading and text properly */
@media screen and (max-width: 768px) {
.work-heading {
font-size: 32px;
line-height: 48px;
text-align: center; 
}

.text {
font-size: 14px; 
line-height: 22px; 
text-align: center; 
}

.card-img-about-us {
margin-bottom: 20px;
}
}

/* Accordion Width and Styling */
.faq-container {
width: 80%; 
max-width: 1000px;
margin: 0 auto;
border-radius: 8px;
}

/* Accordion Button Styles */
.accordion-button {
background: none;
border: none;
width: 100%;
font-size: 18px;

cursor: pointer;
display: flex;
justify-content: space-between;  
text-align: left;
}

.accordion-item {
margin-bottom: 20px;
}

/* Accordion Body */
.accordion-body {
display: none;
padding: 15px;
background-color: #f9f9f9;
font-size: 16px;
color: #333;
border-top: 1px solid #ddd;
border-radius: 0 0 8px 8px;
}

@media (max-width: 768px) {
.accordion-button {
font-size: 16px; 
}

.accordion-body {
font-size: 14px;
}
}
#headingOne,#headingTwo,#headingThree{
  line-height: 35px!important;
}

@media (max-width: 480px) {
.accordion-button {
font-size: 14px; 
}

.accordion-body {
font-size: 12px; 
}

.faq-container {
width: 100%; 
}
}
/*=======================================================*/
/*=========================================================*/
.fullwidth-block {
    padding: 15px 0;
    position: relative;
}
.consulting-container{
   width: auto;
    max-width: 1142px;
}

         .consulting-heading{
            font-size: 1.3em;   
  margin: 0.47em 0;       
  display: block;
  color: #91AFAA; 
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
  margin-bottom: 10px;
         }
         .leading {
            display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
  font-size: 1.2em;
  color: #01a6d4;
  font-weight: 600;
}
.leading.muted {
  color: #adafb8;
}
.description{
   color: #7d808c;
}
.list-check li h3 {
    color: #01a6d4;
    font-weight: 500;
    font-size: 1em;
    margin: 1em 0;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}
.list-check li {
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 10px;
}
/*===========================================================*/
/***************************************************************/
.fullwidth-block {
    padding: 15px 0;
    position: relative;
}
.outsourcing-container{
   width: auto;
    max-width: 1142px;
}

         .outsourcing-heading{
            font-size: 1.3em;                
  margin: 0.47em 0;                   
  display: block;
  color: #91AFAA; 
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
  margin-bottom: 10px;
         }
         .leading-description {
            display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
  font-size: 1.2em;
  color: #01a6d4;
  font-weight: 500;
  line-height: 30px;
}
.leading-description .muted {
  color: #adafb8;
}
 
.list-check li h3 {
    color: #01a6d4;
    font-weight: 500;
    font-size: 1em;
    margin: 1em 0;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}
.list-check li {
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 10px;
}
/*=================================================================*/

 .fullwidth-block {
    padding: 15px 0;
    position: relative;
}

.staffing-container {
    width: auto;
    max-width: 1142px;
}

/* Subheading styling */
.staffing-subheading {
    font-size: 1em!important;
    margin: 0.47em 0;
    display: block;
    color: #7d808c;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
    margin-bottom: 10px;
}

/* Main heading styling */
.staffing-heading {
    font-size: 20px;
    margin: 0.47em 0;
    display: block;
    color: #7d808c;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
    margin-bottom: 10px;
}

/* Leading description styling */
.leading-description {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    font-size: 1.2em;
    color: #01a6d4;
    font-weight: 500;
    line-height: 30px;
}

.leading-description .muted {
    color: #adafb8;
}

/* General description styling */
 

.simple-list {
    list-style-type: none; 
    padding-left: 30px;    
    margin: 0;             
}


.simple-list li {
    margin-bottom: 8px;   
    font-size: 0.9em;     
    color: #333;          
    line-height: 1.5;      
    position: relative;    
    padding-left: 20px;    
}

/* Bullet point style for the list items */
.simple-list li:before {
    content: '\2022'; 
    position: absolute;
    left: 0;            
    top: 0;            
    font-size: 1.5em;   
    color: #7d808c;     
}

/* Optional: Style for list item text */
.simple-list li h3 {
    font-size: 14px;        
    color: #7d808c;      
    font-weight: normal;   
    margin: 0;             
}


.list-check {
    padding: 0;
    margin: 30px 0;
    list-style: none; 
}

.list-check li {
    position: relative;
    padding-left: 40px;          
    padding-bottom: 10px;        
    border-bottom: 1px solid #e4e4e4; 
    margin-bottom: 10px; 
}


.list-check li h3 {
    color: #01a6d4;
    font-weight: 400;
    font-size: 1em;
    margin-bottom: 5px;
}

.list-check li p {
    font-size: 1em;
    color: #7d808c;
    line-height: 1.6; 
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .list-check {
        margin: 20px 0;
    }

    .list-check li {
        padding-left: 30px;      
        padding-bottom: 8px;  
        margin-bottom: 8px;   
    }


    .list-check li h3 {
        font-size: 1.1em;
    }

    .list-check li p {
        font-size: 0.9em;
    }
}

@media (max-width: 576px) {
    .list-check li {
        padding-left: 25px;  
        margin-bottom: 5px; 
    }

    /* Further decrease font size */
    .list-check li h3 {
        font-size: 1em;
    }

    .list-check li p {
        font-size: 0.8em;
    }
}
/*=========================================================*/
.fullwidth-block {
    padding: 15px 0;
    position: relative;
}
.training-container{
   width: auto;
    max-width: 1142px;
}
.training-subheading{
            font-size: 1em!important;                
  margin: 0.47em 0;                   
  display: block;
  color: #7d808c; 
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
  margin-bottom: 10px;
         }


         .training-heading{
            font-size: 20px;                
  margin: 0.47em 0;                   
  display: block;
  color: #7d808c; 
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
  margin-bottom: 10px;
         }
         .leading-description {
            display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
  font-size: 1.2em;
  color: #01a6d4;
  font-weight: 500;
  line-height: 30px;
}
.leading-description .muted {
  color: #adafb8;
}
.description,p{
   color: #424347;
   line-height: 2rem;
   /*font-weight: 550;*/
   
      font-size: 14px;
    text-align: justify;
}
/* Style for the simple unordered list */
.simple-list {
    list-style-type: disc;  
    padding-left: 20px;     
    margin: 0;     
             
}

/* Style for each list item */
.simple-list li {
    margin-bottom: 8px;  
    font-size: 0.9em;      
    color: #333;         
    line-height: 1.5;    
    
}

*/
.simple-list li h3 {
    font-size: 14px;      
    color: #7d808c;          
    font-weight: normal;  
    margin: 0;            
}

.list-check {
    padding: 0;
    margin: 30px 0;
    list-style: none;
}

.list-check li {
    position: relative;
    padding-left: 30px;            
    padding-bottom: 10px;          
    border-bottom: 1px solid #e4e4e4; 
    margin-bottom: 10px;  
     
}


.list-check li:before {
        
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1.5em; 
    color: #01a6d4;  
   
}


.list-check li h3 {
   color: #01a6d4;
    font-weight: 400;
    font-size: 1em;
    margin-bottom: 5px;          
}

.list-check li p {
    font-size: 1em;
    color: #7d808c; 
    line-height: 1.6; 
}


@media (max-width: 768px) {
 
    .list-check {
        margin: 20px 0;
    }

    .list-check li {
        padding-left: 20px;      
        padding-bottom: 8px;  
        margin-bottom: 8px;   
    }

    .list-check li h3 {
        font-size: 1.1em;
    }

    .list-check li p {
        font-size: 0.9em;
    }
}

@media (max-width: 576px) {
    .list-check li {
        padding-left: 15px;  
        margin-bottom: 5px; 
    }

    .list-check li h3 {
        font-size: 1em;
    }

    .list-check li p {
        font-size: 0.8em;
    }
}

/* Base styling for the list */
.simple-list {
    padding: 0;
    margin: 20px 0;
    list-style-type: disc; 
    padding-left: 40px;
}

.simple-list li {
    position: relative;
    margin-bottom: 10px;
    list-style: none;
}


.simple-list li h3 {
    font-weight: 500;
    font-size: 1.2em; 
    color: #7d808c; 
    margin: 0; 
    padding-left: 20px; 
}


.wow.fadeInRight {
    visibility: visible;
    animation-name: fadeInRight; 
}


@media (max-width: 768px) {
    .simple-list li h3 {
        font-size: 1em; 
    }
}
/*=======================================================================*/
.mission-container {
    padding: 83px  90px 83px 215px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .about-us-mission-vision {
    width: 48%; 
    margin-bottom: 20px;
  }
  
  .d-flex {
    display: flex;
    align-items: center;
  }
  
  .icon-background {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EFF5F6;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-right: 15px;
  }
  
  .section-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #323d47;
    margin: 0; 
  }
  
  .text {
    color: #666;
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px; 
    padding-left: 75px;
  }
  

  @media (max-width: 768px) {
    .mission-container {
      padding: 40px 20px; 
    }
  
    .about-us-mission-vision {
      width: 100%; 
      margin-bottom: 20px;
    }
  
    .icon-background {
      height: 50px;
      width: 50px;
    }
  
    .section-title {
      font-size: 20px; 
    }
  
    .text {
      font-size: 14px;
      padding-left: 50px; 
    }
  }
  
  /* Responsive Design for Mobile Devices */
  @media (max-width: 480px) {
    .mission-container {
      padding: 20px; 
    }
  
    .about-us-mission-vision {
      width: 100%;
    }
  
    .icon-background {
      height: 40px;
      width: 40px;
    }
  
    .section-title {
      font-size: 18px; 
    }
  
    .text {
      font-size: 14px; 
      padding-left: 40px; 
    }
  }
  /*Our values*/

  .our-values-container {
    padding: 10px;
  }
  
  .our-values-container .heading {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .h1toh2Header {
    font-weight: 700;
    font-size: 48px;
    line-height: 64px;
    color: #323d47;
  }
  
  /* Flexbox setup for positioning */
  .out-values {
    padding-bottom: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-container {
    position: relative; 
  }
  
  .our-values-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    z-index: -1; 
  }
  
  /* Card Styles */
  .our-values-card {
    width: 260px;
    height: 158px;
    background: #FFFFFF;
    box-shadow: 0 10px 20px rgba(41, 41, 42, 0.12);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    padding: 20px;
    text-align: center;
    z-index: 10;
  }
  
  .our-values-card h5 {
    font-size: 24px;
    font-weight: 700;
    color: #323d47;
    margin-bottom: 25px;
  }
  
  .our-values-card p {
    font-size: 16px;
    color: #323d47;
    line-height: 26px;
    font-weight: 400;
    opacity: 0.6;
  }
  
  /* Positioning the cards at the corners of the image */
  

  .top-left {
    top: -25px;
    left: -180px;
  }
  

  .top-right {
    top: -25px;
    right: -180px;
  }

  .bottom-left {
    bottom: -20px;
    left: -180px;
  }
  
  .bottom-right {
    bottom: -20px;
    right: -180px;
  }
  
  
  
  /* Tablets (768px and below) */
  @media (max-width: 768px) {
    .h1toh2Header {
      font-size: 32px;
      line-height: 44px;
    }
  
    .our-values-card {
      width: 220px;
      height: 130px;
      padding: 15px;
    }
  
    .top-left, .top-right, .bottom-left, .bottom-right {
      position: absolute;
      width: 220px;
      height: 130px;
    }
  
    .image-container {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }
  }
 
  @media (max-width: 480px) {
    .h1toh2Header {
      font-size: 28px;
      line-height: 38px;
    }
  
    .our-values-card {
      width: 100%;
      height: 120px;
      margin-bottom: 10px;
      margin-top: 20px; 
    }
  
    .top-left, .top-right, .bottom-left, .bottom-right {
      position: relative;
      width: 100%;
      height: 120px;
      margin-bottom: 10px;
      left: unset;
      right: unset; 
      top: unset;
      bottom: unset;
    }
  
    .image-container {
      width: 100%;
      margin: 0 auto;
    }
  }
  /*=============================careers dropdown styles================================*/
  
.dropdown-menu {
  background-color: #fff; 
  border-radius: 5px;      
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1); 
  padding: 10px 0;        
  min-width: 160px;       
  list-style: none;       
  margin: 0;              
  position: absolute;
  z-index: 1000;           
}

/* Styling for each dropdown item */
.dropdown-menu > li > a {
  display: block;
  padding: 8px 16px;  
  color: #333;          
  text-decoration: none;  
  font-size: 14px;        
  border-bottom: 1px solid #f1f1f1;

.dropdown-menu > li:last-child > a {
  border-bottom: none;
}


.dropdown-menu > li > a:hover {
  background-color: #f5f5f5; 
  color: #007bff;           
  cursor: pointer;        
}

/* Submenu styling for "USA Careers" */
.dropdown-submenu .dropdown-menu {
  display: none;
  position: absolute;
  top: 0; 
  left: 100%;
  margin-top: 0; 
  border-radius: 5px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1); 
}

/* Display submenu when hovering over "USA Careers" */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}


/* Submenu items hover effect */
.dropdown-submenu .dropdown-menu > li > a:hover {
  background-color: #f5f5f5;
  color: #007bff;  /* Change color on hover */
}

/*======================================================================================*/