* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    
}

.services-container{
    margin-top: 50px;
}
.main-title {
    text-align: center;
    color: #254B72;
    margin-bottom: 100px;
    font-weight: 700;
  }
  
  .journey-section {
    margin-bottom: 200px;
    position: relative;
  }

  .journey-section:nth-of-type(3) {
    margin-bottom: 80px;
  }
  
  .section-header {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    justify-content: center;
  }
  
  .section-header-icon {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
  
  .section-title {
    color: #254B72;
    font-size: 26px;
    font-weight: bold;
  }
  
  .process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .flow-item {
    display: flex;
    align-items: center;
  }
  
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    width: 130px;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
  
  
  .step-text {
    font-size: 10px;
    line-height: 1.3;
    color: #254B72;
    font-weight: 600;
    max-width: 100%;
  }
  
  .arrow-img {
    width: 100px;
    height: 20px;
    margin: 0 5px;
  }
  
  .vertical-connector {
    position: absolute;
    width: 2px;
    background-color: #ccc;
    right: 10%;
    z-index: 1;
  }
  
  .page-description{
    color:#254B72 ;
    text-align: center;
    font-weight: 600;
    line-height: 2;
    font-size: 20px;
    margin-bottom: 40px;

  }
  .vertical-arrow-connector {
    position: absolute;
    height: 320px;
    z-index: 1;
  }
  
 
  .vertical-arrow-right {
    right: 5%;
  }
  
  
  .vertical-arrow-left {
    left: 5%;
 
  }
  

  /* Responsive styles */
  @media (max-width: 990px) {
    .process-flow {
      overflow-x: auto;
      padding-bottom: 15px;
      width: 100%;
    }
    
    .flow-item {
      flex-shrink: 0;
    }
    
    .step {
      width: 100px;
    }
    
    .step-icon {
      width: 60px;
      height: 60px;
    }
    
    .arrow-img {
      width: 50px;
    }
  }
  
  @media (max-width: 768px){
    .vertical-arrow-right ,.vertical-arrow-left{
    display: none;
  
  }

  .process-flow{
    flex-direction: column;
    gap: 30px;
  }
  .arrow-img{
    transform: rotate(90deg);
    width: 65px;
  }
  .edit-arrow .arrow-img{
    transform: rotate(270deg);
  }

  .step-icon{
    margin-bottom: 0px;
  }
  .step {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    width: 300px;
  }
  
  .step-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 0;
  }
  
  .step-text {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    flex: 1;
  }
  
  .page-description {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 15px;
    margin-top: 20px;
  }
  .section-header-icon{
    width: 40px;
    height: 40px;
  }
  .section-title{
    font-size: 20px;
  }
  .main-title{
    margin-bottom: 60px;
  }
  .journey-section{
    margin-bottom: 77px;
  }
  .flow-item.flow-item-arrow {
    justify-content: flex-end;
    padding-right: 32px;
  }
  }

  @media (max-width: 330px){

    .step{
      width: 250px;
    }
  }

  /* -------Dark theme----- */
  body.dark-mode {
    background-color: #010A16;  }

    body.dark-mode .step-text,
    body.dark-mode .section-title,
    body.dark-mode .page-description{
        color: rgb(255, 255, 255,0.7);
    }