/* section-one-start */
.stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  background: #fff;
  flex-wrap: wrap;
  margin-top: -30px;
  /* position: relative;
    z-index: 1; */
}

/* .stats::after {
    content: "";
    bottom: -135px;
    left: 160px;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 50px;
    border-radius: 200px;
 border-radius: 20px;
background: linear-gradient(97deg, #F0F8FF 22.19%, #FFF 109.74%);
} */

.stat-box {
  text-align: center;
  position: relative;
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  z-index: 1;
  min-width: 250px;
}

.stat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 4px;
  background: linear-gradient(180deg, #DFECFF 0%, rgba(255, 255, 255, 0) 63.17%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.stat-box:last-child {
  border-right: none;
}

.stat-box h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0460E9;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 16px;
  color: #747474;
  margin: 0;
}

@media (max-width: 768px) {
  .stats {
    align-items: center;
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid #d9e9ff;
    padding: 15px 0;
  }

  .stat-box:last-child {
    border-bottom: none;
  }
}

/* section-one-end */

/* section-two-start */
section.section-two {
  padding: 40px 0px;
  background: linear-gradient(180deg, #FFF 0%, #F5FBFF 100%);
}

.section-two-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  border-radius: 12px;
  background: #FFF;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.section-two-card:hover {
  box-shadow: 0 13px 19px 0 rgb(166 224 252 / 43%);
}

.section-two-card-text h3 {
  color: #252B42;
  font-size: 20px;
  font-weight: 700;
}

.section-two-card-text p {
  color: var(--Second-text-color, #737373);
  font-size: 14px;
  font-weight: 400;
}

/* section-two-end */

/* section-three-start */
section.section-three {
  padding: 60px 0px 80px 0px;
}

.course-card {
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  margin-top: 20px;
  height: 100%;
}

.course-card:hover {
  box-shadow: 0 2px 20.8px 0 rgb(10 185 248 / 26%);
}

.course-badge {
  background-color: #E0F3FF;
  color: #353535;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.course-badge-color1 {
  background: #FFE7E0;
}

.course-card .card-body h3 {
  color: #161439;
  font-size: 18px;
  font-weight: 600;
  padding-top: 10px;
}

.course-card p {
  font-size: 14px;
  color: #59595A;
  margin-bottom: 16px;
  height: 85px;
}

.course-icons {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
  opacity: 0;
}

.course-card-img {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.course-card:hover .course-icons {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.course-icons img {
  transition: all 0.3s ease-in-out;
}

img.card-img-top {
  padding: 20px 20px 0;
}

/* tap */
.tabs2 {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #e6efff;
  padding-top: 10px;
  position: relative;
  flex-wrap: wrap;
}

.tab2 {
  padding: 10px 20px;
  margin: 0 5px;
  color: #7F7E97;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.tab2.active {
  color: #000;
  font-weight: 600;
}

.tab2.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 40px;
  border-radius: 2px;
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
}

.tab2:hover {
  background: linear-gradient(92deg, #0460E9 -14.55%, #0AB9F8 59.9%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tab2-content {
  display: none;
  margin-top: 30px;
}

.tab2-content.active {
  display: block;
}

@media (max-width: 768px) {
  section.section-three {
    padding: 20px 0px 80px 0px;
  }
}



/* section-three-end */

/* section-four-start */
section.section-four {
  padding: 40px 0px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #FFF 0%, #F5FBFF 47.85%);
}

section.section-four::before {
  content: "";
  top: 30px;
  right: 120px;
  position: absolute;
  z-index: -1;
  width: 45%;
  height: 400px;
  background-image: url(../img/home/section-four-img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section-four-card {
  display: flex;
  gap: 15px;
  border-radius: 6px;
  background: rgba(179, 0, 0, 0.04);
  padding: 12px 20px;
  margin: 30px 30px 20px 10px;
  height: 85%;
  /* transition: all 0.3s ease-in-out; */
}

/* .section-four-card:hover{
  transform: scale(1.05);
} */

.section-four-card2 {
  background: rgba(7, 64, 210, 0.04);
}

.section-four-card3 {
  background: rgba(191, 49, 135, 0.04);
}

.section-four-card4 {
  background: rgba(38, 136, 215, 0.04);
}

.section-four-card5 {
  background: rgba(2, 157, 80, 0.04);
}

.section-four-card6 {
  background: rgba(181, 123, 29, 0.04);
}

.section-four-card-text h3 {
  color: #404040;
  font-size: 20px;
  font-weight: 700;
}

.section-four-card-text p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 991px) {
  section.section-four::before {
    display: none;
  }

  section.section-four {
    padding: 20px 0px;
  }

  .section-four-card {
    margin: 15px;
  }
}

@media (max-width: 768px) {
  .section-four-card {
    margin: 20px;
    flex-direction: column;
    text-align: center;
  }
}

/* section-four-end */

/* section-five-start */
section.section-five {
  background: linear-gradient(2deg, #FFF 0%, #F5FBFF 47.85%);
  padding: 40px 0px;
}

.timeline {
  position: relative;
  margin: 20px auto;
  padding-left: 18px;
  border-left: 2px dashed #CDE1FF;
}

.timeline::before {
  content: "";
  position: absolute;
  left: -2px;
  bottom: -20px;
  width: 6px;
  height: 35px;
  z-index: 3;
  background: #fbfeff;
}

.step {
  position: relative;
  margin-bottom: 50px;
}

.step.step-lest {
  margin-bottom: 10px;
}

/* Circle number */
.circle {
  position: absolute;
  left: -35px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #d3f2fe;
  color: #27c6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  transition: all 0.3s ease;
}

.circle.active {
  border-radius: 37.577px;
  background: var(--Fourchain, linear-gradient(92deg, #0460E9 -14.55%, #0AB9F8 59.9%));
  color: #fff;
  transform: scale(1.2);
}

/* Step content */
.content {
  padding-left: 20px;
}

.content h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.content p {
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.4em;
}

.section-five-img {
  padding-top: 20px;
}

.section-five-step {
  padding: 30px 30px 10px 30px;
}

@media (max-width: 768px) {
  .section-five-img {
    padding-top: 10px;
  }

  .section-five-step {
    padding: 0px 30px;
  }

  .timeline {
    margin: 15px auto;
  }

  section.section-five {
    padding-bottom: 20px;
  }

  .section-five-img {
    padding-top: 40px;
  }
}

@media (max-width: 991px) {
  .section-five-img {
    padding-top: 10px;
  }
}

/* section-five-end */


/* section-six-start */
section.section-six {
  padding: 40px 0px;
}

.section-six-box {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  border-radius: 20px;
  max-width: 1200px;
}

.section-six-box::before {
  content: "";
  top: 0px;
  right: 0px;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/home/section-six-img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

section.section-six p {
  max-width: 600px;
  margin: 20px auto;
  color: #414141;
}

section.section-six h2 {
  color: #212B36;
  font-size: 38px;
  font-weight: 700;
  margin: 0 auto;
}

.section-six-box a {
  display: inline-block;
  width: 200px;
  padding: 10px;
  font-size: 18px;
}

@media (max-width: 768px) {
  section.section-six {
    padding: 0px 0px;
  }
}



/* section-six-end */

/* section-sevan-start */

section.section-sevan {
  padding: 40px 0px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* section.section-sevan::before {
  content: "";
  bottom: 0px;
  right: 0;
  position: absolute;
  z-index: -1;
  width: 55%;
  height: 300px;
  background-image: url(../img/home/section-sevan-bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
} */

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 500px;
  padding: 20px 10px;
  transition: all 0.3s ease-in-out;
}

.feature-box:hover {
  background: aliceblue;
  border-radius: 8px;
}

.feature-icon svg {
  flex-shrink: 0;
}

.feature-content h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(92deg, #0460E9 -14.55%, #0AB9F8 59.9% 59.9%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-content p {
  margin: 4px 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #59595A;
  /* soft dark gray */
  padding-top: 10px;
}

.feature-icon img {
  margin-top: -3px;
}

@media (max-width: 768px) {
  section.section-sevan {
    padding: 20px 0px;
  }
}


@media (min-width: 1440px) and (max-width: 2560.98px) {
  .section-sevan-img.text-center {
    height: 500px;
    position: relative;
  }

  .section-sevan-img.text-center:after {
    content: '';
    position: absolute;
    bottom: -85px;
    left: 0;
    background: linear-gradient(180deg, rgba(245, 251, 255, 0.00) 0%, #FFF 68.02%);
    height: 20%;
    width: 100%;
  }

  section.section-sevan {
    padding-bottom: 80px;
  }
}

/* section-sevan-end */