.BenefitContentwrap{
    
    display: flex;
    flex-wrap: wrap;
    max-width: 1117px;
    width: 100%;
    justify-content: space-between;
    margin: 63px 0;
    gap: 20px;
    row-gap:38px;
}
.secTitlewrap h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 38px;
    line-height: 150%;
    color: #35414B;
    text-align: center;
    margin-bottom: 3px;
}

.secTitlewrap p {
    text-align: center;
    margin: 0;
    max-width: 100%;
    font-size: 16px;
    line-height: 180%;
    color: #4b5563;
    font-weight: 400;
    padding-top: 0;
    font-family: 'Inter', sans-serif;
    padding-top: 0;
}
.benefitBox {
    max-width: 359px;
    width: 100%;
    border: 1px solid #E3F0FF;
    box-shadow: 0px 0px 16px 0px #469FDF33;
    background: #FFFFFF;
    padding: 35px;
    transition: all ease-in 0.3s;
    border-radius: 30px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.benefitBox::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    transition: left 0.5s ease-in-out;
    border-radius: 30px 30px 0 0;
}

/* Odd boxes - blue bar */
.benefitBox:nth-child(odd)::before {
    background: linear-gradient(90deg, #2756DF 0%, #5A7BE8 100%);
}

/* Even boxes - purple bar */
.benefitBox:nth-child(even)::before {
    background: linear-gradient(90deg, #7B8DE6 0%, #9FAFF0 100%);
}

.benefitBox:hover{
    transform: translateY(-4px);
}

/* Odd boxes - blue border on hover */
.benefitBox:nth-child(odd):hover {
    border-color: #2756DF;
}

/* Even boxes - purple border on hover */
.benefitBox:nth-child(even):hover {
    border-color: #7B8DE6;
}

.benefitBox:hover::before {
    left: 0;
}
.benefitBox .benefitBoxtitle{
font-family: 'Inter', sans-serif;
font-weight: 600;
font-style: Medium;
font-size: 16px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
text-align: left;
vertical-align: middle;
color: #231F20;
padding-top:18px;
}
.benefitBox p{
font-family: 'Inter', sans-serif;
font-weight: 400;
font-style: Regular;
font-size: 14px;
leading-trim: NONE;
line-height: 25.95px;
letter-spacing: 0.5%;
text-align: left;
color:#4b5563;
padding-top: 14px;
}
.boxIcon{
    box-shadow: 0px 3px 9.9px 0px #60606066;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 10px;
}

/* Odd boxes - blue */
.benefitBox:nth-child(odd) .boxIcon {
    background: #2756DF;
}

/* Even boxes - purple */
.benefitBox:nth-child(even) .boxIcon {
    background: #7B8DE6
}

/* CTA Wrapper */
.benefit-cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.benefit-cta-wrapper .hollow-cta-btn {
  display: inline-block;
  max-width: max-content;
  padding: 13px 18px;
  background: transparent;
  border: 1px solid #0654E6;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #0654E6;
  text-decoration: none;
  transition: all 0.3s ease;
}

.benefit-cta-wrapper .hollow-cta-btn:hover {
  background: #0654E6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 84, 230, 0.3);
}
.benefitSec  .microCopy .text p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #4b5563;
    text-align: center;
    margin-top: 70px;
}
.benefitSec {
    padding: 128px 0 90px;
}
@media (max-width:575px){
    .benefitSec {
    padding: 90px 0;
}
    .BenefitContentwrap{
      margin: 30px auto 0;
      overflow-x: scroll;
        row-gap: 20px;
        padding: 20px 0;
        flex-wrap: nowrap;
        white-space: nowrap;
}
 .secTitlewrap h2 {

        font-size: 25px;

    }

     

    .secTitlewrap p {
        font-size: 15px;
    }
    .ex
/* Webkit browsers (Chrome, Safari, Edge) */
.BenefitContentwrap::-webkit-scrollbar {
  width: 6px;                  /* Very thin – matches your image */
  height: 6px;
}

.BenefitContentwrap::-webkit-scrollbar-track {
 background: #E9F4FF;     /* Fully transparent track */
  border-radius: 10px;
}

.BenefitContentwrap::-webkit-scrollbar-thumb {
  background: #0554E6;        /* Very light blue-gray when inactive */
  border-radius: 10px;
  transition: background 0.2s ease;
}

.BenefitContentwrap::-webkit-scrollbar-thumb:hover,
.BenefitContentwrap::-webkit-scrollbar-thumb:active {
  background: #0554E6         /* Bright blue when hovering or scrolling (exactly like your image) */
}

/* Optional: make corner fully clean */
.BenefitContentwrap::-webkit-scrollbar-corner {
  background: #E9F4FF;
}
.benefitBox{
    flex: 0 0 369px;
}
.benefitBox p{
    white-space: normal;
}
}
 