  /* our achievement start */
  .sectionwrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }

 
  .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 24px auto;
  }
 
  .box {
    margin: 20px; /* Consistent margin */
    flex: 0 0 20%; /* Adjust as needed */
    box-sizing: border-box;
    text-align: center; /* Center content within box */
  }
 
  .oa-image {
    width: 70px;
    height: 70px;
    display: block; /* Make image a block element */
    margin: 0 auto; /* Center the image */
  }
 
  .oa-title {
    margin-top: 8px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 32px;
    color: black;
  }
 
  .oa-description {
    padding: 0 24px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
  }
  .faq-heading-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    font-family: 'Roboto';
}
    .header-32-black {
    color: black;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 32px;
}
body{
    background-color:white; /* Light gray background */
}
  /* Our achievement end */

    /* why-choose-us start */
     .cards-container {
    display: flex;
    gap: 40px;
    width: 95%;
    overflow: hidden;
    margin-inline: auto;
    padding: 24px 0;
    justify-content: center;
    margin-bottom: 30px;
}       .card {
            flex: 0 0 22.4%;

        }
         .underline-span-blue{
            color:#202F64 ;
        }

        .card {
            background: white;
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;

        }

        .card:hover {
            background:#202F64;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .icon-1 {
            background-color: #E0EAFF;
   }
        .icon-2 {
            background-color: #FCE7F6;
        }
        .icon-3 {
            background-color: #EDFFF9;
        }
        .icon-4 {
            background-color: #FFF3E0;
        }

        .card:hover .icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .card h3 {
            font-family: Montserrat;
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 15px;
            line-height: 1.3;
            color:#202F64;
        }


        .card:hover h3 {
            color: white;
        }

        .card p {            
            line-height: 1.5;
            font-family: Inter;
            font-weight: 400;
            font-size: 16px;
            color: #333333 !important; /* Ensure text is dark by default */
        }


        .card:hover p {
            color: rgba(255, 255, 255, 0.9) !important;
        }
        
        /* Ensure non-hovered state is maintained */
        .card:not(:hover) p {
            color: #333333 !important;
        }
        .card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
       .card:hover .icon-svg {
            color: black; /* Works only if fill="currentColor" */
            }
        .card:hover .icon{
            background-color: #EDFFF9;
        }
        .card:hover svg path{
            fill: black; /* Change color of SVG path on hover */
        }


    /* why-choose-us end */
    /* why-choose-us start */
    @media (max-width: 768px) {
         .cards-container {
                flex-wrap: wrap;
                gap: 16px;
                width:90%;
            }
            
            .card {
                padding: 25px 15px;
                flex: 0 0 100%; /* Full width on mobile */
            }
        }
    /* why-choose-us end */
     /* our-accredition start */
      .header-32-black {
          color: black;
          font-family: Montserrat;
          font-weight: 500;
          font-size: 24px;
      }
      /* our-accredition end */

  