.innerpage_top_padd{padding-top: 100px;}
.individuals_top {
    padding-top: 150px;
}
.middle_section {
    background: url(../../assets/img/curved_background.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 1;
}
.whiteblue_Box {
    background: url(../../assets/img/cruvd_Mask.png) #ffffff;
    background-position: bottom right;
    background-repeat: no-repeat;
    border-radius: 10px;
    position: relative;
    padding: 20px 20px 20px 20px;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 60px;
}
.whiteblue_Box:hover {
    box-shadow: 0px 0px 11px #0000001f;
}
.whiteblue_Box:hover .blue_icon {
    background: #FA8F21;
}
.whiteblue_Box figure {
    margin-top: -110px;
}
.whiteblue_Box h4 {
    color: #000;
    font-size: 25px;
    font-weight: 600;
}
.whiteblue_Box p {
    font-size: 14px;
    color: #676767;
    font-weight: 400;
    line-height: 22px;
}

.sticky-wrapper {
  position: relative;
  width: 100%;
  height: 500vh;
  padding: 0px;
}

.sticky-triggers {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
}

.sticky-trigger {
    position: absolute;
    left: 0%;
    top: 0;
    right: 0%;
    bottom: auto;
    z-index: 1;
}

.sticky-contents {
  position: sticky;
  top: 0px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  width: 100%;
}

.sticky-contents-button {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 47%;
}

.steps {
  text-decoration: none;
  color: #aeafb0;
  /* font-size: clamp(1.378rem, 1.378rem + ((1vw - 0.2rem) * 1.585), 2.25rem); */
  font-weight: 700;
  line-height: 1.2;
    display: grid;
    margin-top: 1.6vh;
    margin-bottom: 1.6vh;
    grid-auto-columns: 1fr;
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    -ms-grid-columns: 60px 1fr;
    grid-template-columns: 60px 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.sticky-text_wrapper {
    position: relative;
    display: block;
    margin-top: 8vh;
    margin-bottom: 8vh;
    color: #363636;
    text-decoration: none;
}

.steps:hover, .steps.active {
  color: #212529;
 
}

.sticky-contents-text {
  display: flex;
}

.sticky-content:not(.active) {
  display: none;
}


/* --------------------------pritee- added style----------------------------------- */

.h3 {
    margin-top: 0px;
    margin-bottom: 0.4em;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
}
.paragraph-l {
    font-size: 14px;
    font-weight: 200;
    color: #676767;
        margin: 0;
    line-height: 24px;
 opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.steps.active .paragraph-l{
opacity: 1;
}
.stick-text_detail{
      -webkit-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
 
}
.circle-number{
      display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 60px;
    height: 60px;
    margin-top: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    background-color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    text-align: center;
}
.steps.steps .circle-number{
  background:#ffffff;
  color:#ADADAD;
  transition: background-color 0.4s ease, color 0.4s ease;
}
.steps.steps.active .circle-number{
  background:#0044F5;
  color:white;
  
}
.phone-mock img{
  padding:30px;
}

.howedgebox{
    background: white;
    padding: 20px 40px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
    height: 100%;
}
.howedgebox figure{

display: flex;

align-items: center;

justify-content: center;
}
.howedgebox img{
  width: 150px;
  height: 150px;
}
.howedgebox h3{

color: #000;

font-size: 20px;
}

.howedgebox p{
    color: #676767;
    font-size: 16px;
}

       .accordion-container {
      width: 100%;
      margin: 10px auto;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      background: #fff;
      margin-bottom: 40px;
    }

    .accordion-container .accordion-item {
      max-height: 60px;
      overflow: hidden;
      transition: max-height 0.6s ease, transform 0.3s ease;
      border-bottom: 1px solid #eee;
      cursor: pointer;
    }

    .accordion-container .accordion-item.active {
     max-height: 600px;
      transform: scale(1.01);
      background: #fafafa;
    }

   .accordion-container .accordion-header {
      padding: 16px 20px;
      font-weight: 600;
      background: #242424;
      font-size: 1.1em;
      transition: background 0.3s;
    }

.accordion-container .accordion-item.active .accordion-header {
  background: #0044f5;	
}
.accordion-container .accordion-item .accordion-header h3{
	color: #fff
}
.accordion-container .accordion-item.active .accordion-header h3{
  color: #ffffff	
}

    .accordion-container .accordion-content {
      padding: 20px 20px;
      opacity: 0;
      transform: translateY(-10px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .accordion-container .accordion-item.active .accordion-content {
      opacity: 1;
      transform: translateY(0);
    }

    .phone-mock1 img{
         width: 100%;
    height: 300px;
    object-fit: contain;
    margin-bottom: 20px;
    }
    .paragraph{
       font-size: 16px;
		line-height: 28px;
       color: #676767;
    }

.accordion-container .accordion-item .accordion-header h3 {
    background: url(https://iedge.digital/assets/img/downarrow.png) no-repeat calc(100% - 10px) center;
    background-size: 20px;
}
.accordion-container .accordion-item.active .accordion-header h3 {
    background-image: url(https://iedge.digital/assets/img/uparrow.png);
}

@media only screen and (max-width: 767px) {
    .individuals_top {
        padding-top: 60px;
    }
    .hero-image {
        height: 100% !important;
    }
    .whiteblue_Box figure {
        margin-top: 0;
    }
    .whiteblue_Box{
        margin-top: 0px;
    }
    .whiteblue_Box h4{
        font-size: 22px;
    }
.hero .hero-content h1 {
    font-size: 24px;
    font-weight: 600;
}
}

    @media screen and (max-width: 768px)
    {
      .h3{
        font-size: 20px;
        margin-bottom: 0;
      }
    }



@media (-webkit-device-pixel-ratio: 1.0) {
  .sticky-contents-button {
      gap: 0.5rem;
  }
  .circle-number{
    margin-bottom: 20px;
  }
  .steps{
    display: block;
  }
  .paragraph-l{
    opacity: 1;
    font-size: 16px;
  }
    .h3 {
        font-size: 25px;
    }
}
