/* ==========================================================
   Power-Train brand overrides
   Loaded AFTER findox.css — keeps the original template file
   untouched and makes every customization easy to find/undo.
   ========================================================== */

/* ---- 1. Brand colors (navy blue + white, from the logo) ---- */
:root {
  --findox-base: #0b2447;
  --findox-base-rgb: 11, 36, 71;
  --findox-primary: #2a5cdb;
  --findox-primary-rgb: 42, 92, 219;
  --findox-white3: #eaf0fb;
  --findox-white3-rgb: 234, 240, 251;
  --findox-white4: #dde7f9;
  --findox-white4-rgb: 221, 231, 249;
}

/* ---- 1b. Better contrast: white text on the new blue button background ---- */
.findox-btn__text {
  color: var(--findox-white, #ffffff);
}

/* ---- 2. Neutralize decorative shape art baked with the old gold/teal palette ---- */
img[alt="shape"],
.working-process__shape,
.blog-card__shape,
.faq-one__content__shape,
.page-header__shape {
  filter: grayscale(1) brightness(1.15);
}

/* ---- 3. Hero image: contain a real photo instead of the old transparent cutout ---- */
.hero-one__image--photo {
  position: relative;
  right: auto;
  bottom: auto;
  display: block;
  max-width: 460px;
  margin-left: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(11, 36, 71, 0.35);
}
.hero-one__image--photo img {
  display: block;
  width: 100%;


  border-radius: 24px;
}
@media (max-width: 1199px) {
  .hero-one__image--photo {
    margin: 40px auto 0;
  }
}
@media (max-width: 575px) {
  .hero-one__image--photo img {
    height: 300px;
  }
}

/* ---- 4. Typing animation on the hero headline ---- */
.hero-typed {
  color: var(--findox-primary, #2a5cdb);
  white-space: normal;
}
.hero-typed__cursor {
  display: inline-block;
  margin-left: 2px;
  animation: heroTypedBlink 900ms steps(1) infinite;
}
@keyframes heroTypedBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* ---- 5. Full services checklist (below the 6 flagship service cards) ---- */
.pt-all-services__intro {
  text-align: center;
  max-width: 640px;
  margin: 10px auto 45px;
}
.pt-all-services__intro__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--findox-white, #fff);
  background: linear-gradient(135deg, var(--findox-base, #0b2447), var(--findox-primary, #2a5cdb));
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.pt-all-services__intro__tag i {
  font-size: 11px;
}
.pt-all-services__intro__title {
  font-family: var(--findox-heading-font);
  font-size: 30px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  margin: 0;
}
@media (max-width: 575px) {
  .pt-all-services__intro__title {
    font-size: 24px;
  }
}

.pt-all-services {
  margin-top: 20px;
}
.pt-all-services__col {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, var(--findox-white3, #eaf0fb) 100%);
  border: 1px solid rgba(var(--findox-primary-rgb, 42, 92, 219), 0.12);
  border-radius: 24px;
  padding: 44px 40px 40px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 25px 55px -30px rgba(11, 36, 71, 0.35);
  transition: transform 400ms ease, box-shadow 400ms ease;
}
.pt-all-services__col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--findox-base, #0b2447), var(--findox-primary, #2a5cdb));
}
.pt-all-services__col:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 65px -25px rgba(11, 36, 71, 0.4);
}
@media (max-width: 575px) {
  .pt-all-services__col {
    padding: 32px 24px 28px;
  }
}
.pt-all-services__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(11, 36, 71, 0.1);
}
.pt-all-services__title {
  font-family: var(--findox-heading-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  margin: 0;
}
.pt-all-services__count {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--findox-white, #fff);
  background: linear-gradient(135deg, var(--findox-base, #0b2447), var(--findox-primary, #2a5cdb));
  padding: 7px 16px;
  border-radius: 100px;
  box-shadow: 0 8px 18px -6px rgba(var(--findox-primary-rgb, 42, 92, 219), 0.55);
}
.pt-all-services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 575px) {
  .pt-all-services__list {
    grid-template-columns: 1fr;
  }
}
.pt-all-services__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--findox-black3, #333333);
  line-height: 1.4;
  padding: 10px 10px;
  border-radius: 10px;
  transition: background-color 300ms ease, transform 300ms ease, color 300ms ease;
}
.pt-all-services__list li:hover {
  background-color: rgba(var(--findox-primary-rgb, 42, 92, 219), 0.08);
  color: var(--findox-base, #0b2447);
  transform: translateX(4px);
}
.pt-all-services__list li i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--findox-base, #0b2447), var(--findox-primary, #2a5cdb));
  color: var(--findox-white, #ffffff);
  font-size: 11px;
  box-shadow: 0 6px 14px -4px rgba(var(--findox-primary-rgb, 42, 92, 219), 0.55);
  transition: transform 300ms ease;
}
.pt-all-services__list li:hover i {
  transform: scale(1.15);
}

/* ---- 6. WhatsApp chat widget (all pages, via footer.php) ---- */
.pt-whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  font-family: var(--findox-font);
}
.pt-whatsapp-widget__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  background-color: #25d366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  animation: ptWhatsappPulse 2.4s infinite;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.pt-whatsapp-widget__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -6px rgba(37, 211, 102, 0.7);
}
.pt-whatsapp-widget__btn i {
  font-size: 22px;
}
@keyframes ptWhatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 12px 30px -8px rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 12px 30px -8px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 12px 30px -8px rgba(37, 211, 102, 0.6); }
}
.pt-whatsapp-widget__panel {
  width: 320px;
  max-width: calc(100vw - 48px);
  background-color: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(11, 36, 71, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 250ms ease, transform 250ms ease, visibility 250ms;
}
.pt-whatsapp-widget__panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.pt-whatsapp-widget__header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #128c4a, #25d366);
  padding: 18px 44px 18px 20px;
  position: relative;
}
.pt-whatsapp-widget__header__avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
}
.pt-whatsapp-widget__header__avatar img {
  width: 100%;
  height: auto;
}
.pt-whatsapp-widget__header__info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.pt-whatsapp-widget__header__info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}
.pt-whatsapp-widget__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #b6ffb0;
  display: inline-block;
}
.pt-whatsapp-widget__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 10px;
  transition: background-color 250ms ease;
}
.pt-whatsapp-widget__close:hover {
  background-color: rgba(255, 255, 255, 0.35);
}
.pt-whatsapp-widget__body {
  padding: 22px 20px 10px;
  background-color: #ece5dd;
}
.pt-whatsapp-widget__bubble {
  background-color: #fff;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 4px 14px 14px 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  max-width: 85%;
}
.pt-whatsapp-widget__start {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px 20px 20px;
  background-color: #25d366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px;
  border-radius: 100px;
  text-decoration: none;
  transition: background-color 250ms ease, transform 250ms ease;
}
.pt-whatsapp-widget__start:hover {
  background-color: #1ebc59;
  color: #fff;
  transform: translateY(-2px);
}
.pt-whatsapp-widget__start i {
  font-size: 18px;
}
@media (max-width: 480px) {
  .pt-whatsapp-widget {
    right: 16px;
    bottom: 16px;
  }
  .pt-whatsapp-widget__btn span {
    display: none;
  }
  .pt-whatsapp-widget__btn {
    padding: 14px;
    border-radius: 50%;
  }
}
