/* home banner */
.hero-banner-sec {
  background: linear-gradient(180deg, #0865FF 0%, #FFFFFF 100%);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding-block: 120px 0;
  overflow: hidden;
}

.hero-banner-sec:before,
.hero-banner-sec:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/lineborder.png");
  width: 100%;
  height: 100%;
  /* pointer-events: none; */
  background-size: cover;
  z-index: -1;
  content: "";
}

.innerpageheading h1{
  color: #0953E4;
  font-size: 40px;
  font-weight: 600;
}
.innerpageheading span{
  font-size: 16px;
  color: #666666;
}
.breadcrumb {
  width: 50%;
  justify-content: end;
  margin: 0;
}
.breadcrumb ul{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px;
}
.breadcrumb ul li {
  font-size: 16px;
}
.breadcrumb ul li a{
  color: #000;
  font-size: 14px;
}

.boxUI {
    margin-bottom: 50px;
    border-bottom: 2px dashed #cdcccc;
    padding-bottom: 20px;
}
.boxUI h2 {
    font-size: var(--font35);
    line-height: 45px;
    color: var(--black);
    font-weight: bold;
    margin-bottom: 0px;
}
.boxUI strong {
    display: block;
    margin-bottom: 10px;
}

.boxUI ul li {
    list-style: disc;
    padding: 2px 0px;
    margin: 0px;
}

.whychoose-section {
    background: #0953E4;
    padding: 50px 20px;
    margin-bottom: 50px;
    border-radius: 20px;
}
.boxstyle {
    text-align: center;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 9px #00000038;
    padding: 15px;
}
.boxnumber {
    font-size: 18px;
    width: 40px;
    height: 40px;
    margin: 0px auto;
    background: #ff0000;
    border-radius: 50%;
    color: #fff;
    line-height: 40px;
    font-weight: 800;
}
/* Different Colors */
.boxnumber:nth-child(1) { background: linear-gradient(135deg, #667eea, #764ba2); }
.boxnumber:nth-child(2) { background: linear-gradient(135deg, #ff6a88, #ff99ac); }
.boxnumber:nth-child(3) { background: linear-gradient(135deg, #42e695, #3bb2b8); }
.boxnumber:nth-child(4) { background: linear-gradient(135deg, #f6d365, #fda085); }
.boxnumber:nth-child(5) { background: linear-gradient(135deg, #84fab0, #8fd3f4); }

/* Hover Effect */
.boxnumber:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.boxheading {
    font-size: 16px;
    font-weight: 800;
    line-height: normal;
    margin: 10px 20px;
}
.boxcontent {
    font-size: 16px;
    line-height: 24px;
}

/*  */


.marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 450px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
}
.icon-container {
  display: flex;
  width: 245px;
  height: 12vw;
  justify-content: center;
  align-items: center;
}
.icon {
  width: 65%;
}


.header-quaternary {
  max-width: 100%;
  font-size: 14px;
  letter-spacing: 1px;
  color: #000000;
  padding: 2px 4px;
}

.header-secondary {
  max-width: 100%;
  font-size: 40px;
  line-height: 120%;
}



.flex-vertical {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-horizontal {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-horizontal.flex-left {
  justify-content: flex-start;
}

.track-vertical {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-vertical 20s linear infinite;
}

.track-vertical-alt {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-vertical-alt 20s linear infinite;
}

.marquee-cover {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 10;
}

@keyframes marquee-vertical {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes marquee-vertical-alt {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0%);
  }
}

@keyframes marquee-horizontal {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-horizontal-alt {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}


.define-section {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.process-text {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.word {
  display: block;
  opacity: 0;
  transform: translateY(50px);
}


.whychoose-section .heading-one{
  color: #fff;
}
.whychoose-section .common_heading_box{
  color: #fff;
}

.bortop{
    border-top: 2px dashed #cdcccc;
    padding-top: 40px;  
    margin-top: -50px;
}

@media only screen and (max-width: 640px) {
  .mobile-column{
    flex-direction: column;
  }
  .innerpageheading h1{
    font-size: 18px;
  }
  .breadcrumb {
      width: 100%;
      justify-content: start;
      margin: 0;
      margin-top: 20px;
  }
  .breadcrumb ul{
    padding: 0px;
    margin: 0px;
  }

.icon-container {
    width: 80px;
    height: 22vw;
}
.icon {
    width: 100%;
}
.marquee {
    height: 220px;
}

.process-text {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.boxstyle{
  margin-bottom: 15px;
}

.boxUI h2 {
    font-size: var(--font28);
    line-height: 38px;
}

}