/* breadcrome */
.tp-breadcrumb__bg {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    z-index: -1;
}

/* contact section */
/* SERVICES CTA */
.xp-services-cta {
  position: relative;
  padding: 120px 0;
  background: #000;
  overflow: hidden;
}

.xp-services-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(249,77,28,0.18), transparent 55%);
  z-index: 1;
}

.xp-services-cta .container {
  position: relative;
  z-index: 2;
}

.xp-services-cta-content {
  animation: fadeUp 1s ease forwards;
}

.xp-cta-pretitle {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F94D1C;
  margin-bottom: 15px;
}

.xp-cta-title {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.xp-cta-title span {
  color: #F94D1C;
}

.xp-cta-text {
  color: #ccc;
  max-width: 540px;
  margin-bottom: 35px;
}

.xp-cta-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.xp-cta-btn {
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.xp-cta-btn.primary {
  background: #F94D1C;
  color: #fff;
}

.xp-cta-btn.primary:hover {
  background: #fff;
  color: #000;
}

.xp-cta-btn.outline {
  border: 2px solid #F94D1C;
  color: #F94D1C;
}

.xp-cta-btn.outline:hover {
  background: #F94D1C;
  color: #fff;
}

/* Right Side Visual */
.xp-services-cta-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeRight 1.2s ease forwards;
}

.xp-cta-circle {
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(249,77,28,0.15);
  border-radius: 50%;
  animation: pulse 3.5s infinite;
}

.xp-cta-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  max-width: 320px;
  z-index: 2;
}

.xp-cta-card h4 {
  margin-bottom: 15px;
  color: #000;
}

.xp-cta-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.xp-cta-card li {
  margin-bottom: 10px;
  color: #565656;
  font-weight: 500;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.15); opacity: .35; }
  100% { transform: scale(1); opacity: .7; }
}


/* ============================= */
/* WHY CHOOSE SECTION */
/* ============================= */

.tp-why-area {
  background: #fff;
}

.tp-why-title .tp-section-title-pre {
  color: #F94D1C;
  font-weight: 600;
  letter-spacing: 1px;
}

.tp-why-title .tp-section-title {
  color: #000;
}

/* Cards */
.tp-why-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 40px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
  animation: fadeUp 0.9s ease both;
}

.tp-why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F94D1C, #ff7a52);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.tp-why-card * {
  position: relative;
  z-index: 1;
}

.tp-why-card:hover::before,
.tp-why-card.active::before {
  opacity: 1;
}

.tp-why-card:hover,
.tp-why-card.active {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.tp-why-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
  transition: color 0.3s ease;
}

.tp-why-card p {
  color: #565656;
  font-size: 15px;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.tp-why-card:hover h4,
.tp-why-card.active h4,
.tp-why-card:hover p,
.tp-why-card.active p {
  color: #fff;
}

/* Icon Number */
.tp-why-icon {
  width: 55px;
  height: 55px;
  background: #F94D1C;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: background 0.3s ease;
}

.tp-why-card:hover .tp-why-icon,
.tp-why-card.active .tp-why-icon {
  background: #000;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 767px) {
  .tp-why-card {
    padding: 30px 25px;
  }
}

/* ============================= */
/* SERVICES FAQ */
/* ============================= */

.tp-faq-services-area {
  background: #fff;
}

.tp-faq-services-title .tp-section-title-pre {
  color: #F94D1C;
  font-weight: 600;
  letter-spacing: 1px;
}

.tp-faq-services-title .tp-section-title {
  color: #000;
}

/* Accordion */
.tp-faq-accordion details {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.tp-faq-accordion details[open] {
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: #F94D1C;
}

/* Summary */
.tp-faq-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 60px 22px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  position: relative;
  transition: color 0.3s ease;
}

.tp-faq-accordion summary::-webkit-details-marker {
  display: none;
}

.tp-faq-accordion details[open] summary {
  color: #F94D1C;
}

/* Icon */
.tp-faq-accordion summary .icon {
  position: absolute;
  right: 25px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.tp-faq-accordion summary .icon::before,
.tp-faq-accordion summary .icon::after {
  content: "";
  position: absolute;
  background: #F94D1C;
  transition: transform 0.3s ease;
}

.tp-faq-accordion summary .icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.tp-faq-accordion summary .icon::after {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
}

.tp-faq-accordion details[open] summary .icon::after {
  transform: scaleY(0);
}

/* Content */
.tp-faq-accordion .faq-content {
  padding: 0 25px 25px;
  color: #565656;
  font-size: 15px;
  line-height: 1.8;
  animation: faqFade 0.4s ease;
}

/* Animation */
@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 767px) {
  .tp-faq-accordion summary {
    font-size: 16px;
    padding: 20px 55px 20px 20px;
  }
}

@media (max-width: 768px) {
  
}

@media (max-width: 376px) {
  .tp-blog-2-thumb img{
    height: auto;
  }
  .xp-cta-title{
    font-size: 30px;
  }

  .tp-service-details-title{
    font-size: 25px;
  }
  .tp-breadcrumb__title{
    font-size: 30px !important;
  }
}

@media (max-width: 320px) {
  .tp-blog-2-thumb img{
    height: auto;
  }

  p{
    font-size: 14px;
  }
}

