.text-blue {
  color: #0a4fd5;
}

/* Fix story layout overlap */
.pta-story {
  position: relative;
  overflow: hidden;
  padding: 85px 0;
}
.pta-story .container,
.pta-story .row {
  position: relative;
  z-index: 2;
}

/* Video/Image card */
.pta-video-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.pta-video-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Play button */
.pta-playbtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0.95;
}

.pta-playbtn:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .pta-video-card img {
    height: 320px;
  }
  .pta-story {
    padding: 85px 20px !important;
  }
}
@media (max-width: 575px) {
  .pta-video-card img {
    height: 260px;
  }
}

/*------------------------------- why choose section -------------------------------*/
.pta-about, .roadmap_section {
  position: relative;
  overflow: hidden;
  padding: 85px 0;
}

.pta-about .pta-title {
  line-height: 1.15;
}
.pta-about .pta-desc {
  opacity: 0.88;
  line-height: 1.8;
  max-width: 680px;
}

/* IMAGE WRAP FIX */
.pta-about-imageWrap {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  height: 100%;
  min-height: 420px; /* makes it balanced with left content */
}

.pta-about-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* Feature Cards same */
.pta-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.pta-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.pta-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(13, 110, 253, 0.1);
  border: 1px solid rgba(13, 110, 253, 0.18);
  flex: 0 0 44px;
}
.pta-feature__icon i {
  font-size: 18px;
  color: #0d6efd;
}
.pta-feature__text h6 {
  font-weight: 800;
}
.pta-feature__text p {
  opacity: 0.85;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .pta-about-imageWrap {
    min-height: 320px;
  }
  .pta-about-img {
    min-height: 320px;
  }
  .pta-about, .roadmap_section {
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .pta-about-imageWrap {
    min-height: 260px;
  }
  .pta-about-img {
    min-height: 260px;
  }
}