/* breadcrome */
.tp-breadcrumb__bg {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    z-index: -1;
}
/* ============================= */
/* Why Choose Us Section         */
/* ============================= */

.xp-why-choose-area {
  background-color: #1F242C;
}

.xp-section-pre {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #F94D1C;
}

.xp-section-title {
  font-size: 36px;
  color: #ffffff;
}

/* Card */
.xp-why-card {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 18px;
  text-align: left;
  height: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover */
.xp-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

/* Accent bar */
.xp-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F9A825, #F94D1C);
}

/* Icon */
.xp-why-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

/* Text */
.xp-why-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1F242C;
}

.xp-why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #565656;
}

/* Entrance animation */
.xp-why-card {
  opacity: 0;
  transform: translateY(20px);
  animation: xpFadeUp 0.8s ease forwards;
}

.xp-why-card:nth-child(1) { animation-delay: .1s; }
.xp-why-card:nth-child(2) { animation-delay: .2s; }
.xp-why-card:nth-child(3) { animation-delay: .3s; }
.xp-why-card:nth-child(4) { animation-delay: .4s; }
.xp-why-card:nth-child(5) { animation-delay: .5s; }
.xp-why-card:nth-child(6) { animation-delay: .6s; }

@keyframes xpFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .xp-section-title {
    font-size: 30px;
  }
}


@media (max-width:426px) {
  .tp-portfolio-details-title{
    font-size: 25px !important;
  }
}

@media (max-width: 320px) {
  p, .tp-portfolio-details-list ul li{
    font-size: 14px !important;
  }

  h5{
    font-size: 12px !important;
  }
}