/* ===========================
  4- CTA BUTTON
   =========================== */
.xtru-cta {
  background: linear-gradient(90deg, #00c4ff, #6c63ff);
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0,196,255,0.4);
}
.xtru-cta:hover {
  opacity: 0.9;
  box-shadow: 0 0 12px rgba(0,196,255,0.6),
              0 0 20px rgba(108,99,255,0.4);
}
body.scrolled .xtru-cta {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  box-shadow: 0 0 6px rgba(0,196,255,0.5);
}
 /* Prevent hero button from shrinking on scroll */
.xtru-hero .xtru-cta {
  font-size: 1rem !important;
  padding: 0.6rem 1.2rem !important;
  box-shadow: 0 0 8px rgba(0,196,255,0.4) !important;
}

 
/* ===========================
 10-  FLUENT FORMS
   =========================== */
.fluentform .ff-el-group input,
.fluentform .ff-el-group textarea,
.fluentform .ff-el-group select {
  background: #111 !important;
  color: #fff !important;
  border: 1px solid #333 !important;
  border-radius: 6px !important;
  padding: 12px !important;
  width: 100% !important;
}
.fluentform .ff-el-group label {
  color: #fff !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
  display: block;
}
.fluentform .ff-btn-submit {
  background: linear-gradient(90deg, #00c4ff, #6c63ff) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 12px 24px !important;
  border-radius: 6px !important;
  box-shadow: 0 0 8px rgba(0,196,255,0.4) !important;
  transition: all 0.3s ease !important;
  border: none !important;
}
.fluentform .ff-btn-submit:hover {
  opacity: 0.9 !important;
  box-shadow: 0 0 12px rgba(0,196,255,0.6),
              0 0 20px rgba(108,99,255,0.4) !important;
}

#careers-form {
  scroll-margin-top: 100px; /* Adjust if header height differs */
}
#careers-form:target {
  animation: glowFocus 1.2s ease-out;
}

@keyframes glowFocus {
  0% { box-shadow: 0 0 0 rgba(0,255,255,0); }
  40% { box-shadow: 0 0 25px rgba(0,255,255,0.3); }
  100% { box-shadow: 0 0 0 rgba(0,255,255,0); }
}
/* ===========================
   XTRU Contact Page Enhancements
   =========================== */

/* Scoped background effect for the form section only */
.fluentform_wrapper_5 {
  background: radial-gradient(circle at top center, rgba(0, 196, 255, 0.08), rgba(0, 0, 0, 0.8) 80%);
  border: 1px solid rgba(0, 196, 255, 0.08);
  border-radius: 10px;
  padding: 40px 28px;
  box-shadow: 0 0 20px rgba(0, 196, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

/* Slight hover depth on form wrapper */
.fluentform_wrapper_5:hover {
  box-shadow: 0 0 28px rgba(0, 196, 255, 0.15);
  border-color: rgba(0, 196, 255, 0.15);
}

/* Add subtle fade-up motion when the form loads */
@keyframes xtruFormFadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.fluentform_wrapper_5 {
  animation: xtruFormFadeUp 0.8s ease-out forwards;
}

/* Optional: better alignment on mobile */
@media (max-width: 768px) {
  .fluentform_wrapper_5 {
    padding: 28px 20px;
    border-radius: 8px;
  }
}


/* ===========================
 11-  SUPPORT ICON CARDS
   =========================== */
.xtru-support-icons .icon-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 24px 18px;
  text-align: center;
  transition: all 0.35s ease;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
}
.xtru-support-icons .icon-card .brxe-icon {
  width: 54px;
  height: 54px;
  stroke: #fff;
  margin-bottom: 14px;
  transition: all 0.35s ease;
}
.xtru-support-icons .icon-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  transition: color 0.35s ease;
}
.xtru-support-icons .icon-card p {
  font-size: 14px;
  color: #aaa;
  margin: 0;
  transition: color 0.35s ease;
}
/* Hover Effects */
.xtru-support-icons .icon-card:hover {
  background: rgba(0,196,255,0.08);
  border: 1px solid rgba(0,196,255,0.3);
  box-shadow: 0 6px 18px rgba(0,196,255,0.25),
              0 0 20px rgba(108,99,255,0.15);
  transform: translateY(-6px);
}
.xtru-support-icons .icon-card:hover .brxe-icon {
  stroke: #00c4ff;
  transform: scale(1.15);
}
.xtru-support-icons .icon-card:hover h3 {
  color: #00c4ff;
}
.xtru-support-icons .icon-card:hover p {
  color: #fff;
}

/* ===========================
12-   FAQ - CINEMATIC
   =========================== */
.xtru-faq h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .xtru-faq h2 { font-size: 22px; margin-bottom: 20px; }
}
.xtru-faq .accordion-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  cursor: pointer;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  margin-bottom: 10px;
  transition: background 0.3s ease, border-left 0.3s ease;
}
.xtru-faq .accordion-title-wrapper:hover {
  background: rgba(0,196,255,0.05);
}
.xtru-faq .accordion-title-wrapper h3 {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  transition: color 0.3s ease;
  text-align: left;
}
@media (max-width: 768px) {
  .xtru-faq .accordion-title-wrapper h3 { font-size: 16px; }
}
.xtru-faq .accordion-title-wrapper:hover h3,
.xtru-faq .accordion-title-wrapper[aria-expanded="true"] h3 {
  color: #00c4ff;
}
.xtru-faq .accordion-title-wrapper .brxe-icon {
  flex-shrink: 0;
  font-size: 1.2em;
  color: #aaa;
  transition: transform 0.3s ease, color 0.3s ease;
}
.xtru-faq .accordion-title-wrapper:hover .brxe-icon {
  color: #00c4ff;
}
.xtru-faq .accordion-title-wrapper[aria-expanded="true"] .brxe-icon {
  transform: rotate(90deg) scale(1.1);
  color: #00c4ff;
}
.xtru-faq .accordion-title-wrapper[aria-expanded="true"] {
  border-left: 3px solid;
  border-image: linear-gradient(180deg, #00c4ff, #6c63ff) 1;
  padding-left: 14px;
}
.xtru-faq .accordion-content-wrapper .brxe-text {
  padding: 16px;
  background: linear-gradient(145deg, rgba(0,196,255,0.05), rgba(108,99,255,0.08));
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0,196,255,0.25);
}
.xtru-faq .accordion-content-wrapper .brxe-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc !important;
  margin: 12px 0;
}
html { scroll-behavior: smooth; }
.xtru-faq .accordion-content-wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 
    max-height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.4s ease,
    margin 0.4s ease,
    padding 0.4s ease;
  padding-left: 10px;
  border-left: 2px solid rgba(0,196,255,0.15);
}
.xtru-faq .accordion-title-wrapper[aria-expanded="true"] + .accordion-content-wrapper {
  max-height: 800px;
  opacity: 1;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-left: 2px solid rgba(0,196,255,0.5);
}
/* Scroll Offset Fix */
:root { --header-height: 80px; }
#faq-section,
#contact-form {
  scroll-margin-top: var(--header-height);
}
/* FAQ page padding fix – scoped and forced */
.xtru-faq.xtru-faq-section,
.xtru-faq .xtru-faq-section,
.xtru-faq-section .accordion-title-wrapper,
.xtru-faq-section .accordion-content-wrapper {
  padding-left: clamp(16px, 4vw, 40px) !important;
  padding-right: clamp(16px, 4vw, 40px) !important;
  box-sizing: border-box;
}

/* ===========================
 15-  XTRU Card Styles
   =========================== */
.xtru-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 24px 18px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%; /* ✅ equal height */
}

/* Wrapper to balance content and keep button aligned */
.xtru-card .content-wrap {
  flex: 1; /* ✅ pushes button down */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.xtru-card .brxe-icon {
  width: 54px;
  height: 54px;
  stroke: #fff;
  fill: #fff;
  margin-bottom: 14px;
  transition: all 0.35s ease;
}

.xtru-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  transition: color 0.35s ease;
}

.xtru-card p {
  font-size: 14px;
  color: #aaa;
  margin: 0 0 12px 0;
  transition: color 0.35s ease;
  line-height: 1.7;
}

/* Hover */
.xtru-card:hover {
  background: rgba(0,196,255,0.08);
  border: 1px solid rgba(0,196,255,0.3);
  box-shadow: 0 6px 18px rgba(0,196,255,0.25),
              0 0 20px rgba(108,99,255,0.15);
  transform: translateY(-6px);
}
.xtru-card:hover .brxe-icon {
  fill: #00c4ff;
  stroke: #00c4ff;
  filter: drop-shadow(0 0 8px rgba(0,196,255,0.6));
  transform: scale(1.15);
}
.xtru-card:hover h3 {
  color: #00c4ff;
}
.xtru-card:hover p {
  color: #fff;
}
#brxe-ovxswq .bricks-layout-item img {
  margin-bottom: 0 !important; /* closes the space under image */
}

#brxe-ovxswq .bricks-layout-item .content-wrapper {
  padding-top: 12px !important; /* tightens spacing between image and content */
}


/* Button alignment */
.xtru-card .brxe-button {
  margin-top: auto; /* ✅ stays aligned across cards */
  align-self: center;
}
/* ===========================
   WORKFLOW CARD
   =========================== */
.xtru-workflow-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 24px 18px;
  transition: all 0.35s ease;
}

.xtru-workflow-card:hover {
  background: rgba(0, 196, 255, 0.08);
  border-color: rgba(0, 196, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,196,255,0.25),
              0 0 20px rgba(108,99,255,0.15);
}

.xtru-workflow-card .brxe-icon {
  width: 56px;
  height: 56px;
  stroke: #00c4ff;
  margin-bottom: 12px;
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.xtru-workflow-card:hover .brxe-icon {
  transform: scale(1.1);
  stroke: #6c63ff;
}

/* ===========================
   FIX: Keep heading visible but remove text glow
   =========================== */
.xtru-card h2,
.xtru-card h3,
.xtru-card .brxe-heading {
  text-shadow: none !important;
  color: #ffffff !important; /* <-- sets heading back to visible white */
  transition: color 0.3s ease;
}

.xtru-card:hover h2,
.xtru-card:hover h3,
.xtru-card:hover .brxe-heading {
  text-shadow: none !important;
  color: #ffffff !important; /* keep white even during hover */
}
/* ===========================================================
   XTRU Blog — Precision Glow Cards (Final Premium Version)
   Target: #brxe-ovxswq
   =========================================================== */

/* --- Base Card --- */
#brxe-ovxswq .bricks-layout-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 255, 0.05);
  transition: all 0.4s ease;
  box-shadow: 0 0 0 rgba(0, 255, 255, 0);
  isolation: isolate;
}

/* --- Hover: Glow & Depth --- */
#brxe-ovxswq .bricks-layout-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 255, 0.25);
  box-shadow:
    0 0 35px rgba(0, 255, 255, 0.15),
    inset 0 0 20px rgba(0, 255, 255, 0.05);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

/* --- Glow Border --- */
#brxe-ovxswq .bricks-layout-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.35),
    rgba(0, 0, 0, 0)
  ) border-box;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

#brxe-ovxswq .bricks-layout-item:hover::before {
  opacity: 1;
}

/* ===========================================================
   Image Styling
   =========================================================== */
#brxe-ovxswq .bricks-layout-item figure,
#brxe-ovxswq .bricks-layout-item .image {
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 14px 14px 0 0 !important;
  overflow: hidden !important;
  position: relative;
  z-index: 1;
}

#brxe-ovxswq .bricks-layout-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px 14px 0 0 !important;
  margin: 0 !important;
  filter: brightness(0.95) contrast(1.05);
  transition: filter 0.4s ease;
  clip-path: inset(0 round 14px);
}

#brxe-ovxswq .bricks-layout-item:hover img {
  filter: brightness(1.05) contrast(1.1);
}

/* --- Subtle Bottom Gradient Overlay on Image --- */
#brxe-ovxswq .bricks-layout-item .image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
}

/* ===========================================================
   Content Section
   =========================================================== */
#brxe-ovxswq .bricks-layout-item .content-wrapper {
  display: block !important;
  align-items: unset !important;
  height: auto !important;
  min-height: auto !important;
  margin-top: 0 !important;
  padding: 22px 26px 26px !important;
  border-radius: 0 0 14px 14px;
  border-top: none !important;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  transition: background 0.4s ease;
}

#brxe-ovxswq .bricks-layout-item:hover .content-wrapper {
  background: linear-gradient(
    180deg,
    rgba(0, 255, 255, 0.06) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

/* ===========================================================
   Typography (with soft text glow enhancement)
   =========================================================== */
#brxe-ovxswq .bricks-layout-item h2,
#brxe-ovxswq .bricks-layout-item h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  text-shadow: 0 0 4px rgba(0, 255, 255, 0.08);
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

#brxe-ovxswq .bricks-layout-item:hover h2,
#brxe-ovxswq .bricks-layout-item:hover h3 {
  color: #00f0ff;
  text-shadow:
    0 0 6px rgba(0, 255, 255, 0.4),
    0 0 18px rgba(0, 255, 255, 0.25);
}

/* --- Excerpt --- */
#brxe-ovxswq .bricks-layout-item p {
  color: #bfc8d0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
  text-shadow: 0 0 3px rgba(0, 255, 255, 0.05);
}

/* --- Read More --- */
#brxe-ovxswq .bricks-layout-item a.more-link {
  display: inline-block;
  margin-top: 16px;
  color: #00cfff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

#brxe-ovxswq .bricks-layout-item a.more-link:hover {
  color: #7ee9ff;
  text-shadow: 0 0 10px rgba(128, 233, 255, 0.6);
}

/* ===========================================================
   Pagination
   =========================================================== */
#brxe-ovxswq .bricks-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 70px;
  overflow: visible;
}

#brxe-ovxswq .bricks-pagination a,
#brxe-ovxswq .bricks-pagination span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
}

#brxe-ovxswq .bricks-pagination a:hover,
#brxe-ovxswq .bricks-pagination .current {
  background: linear-gradient(135deg, #00bfff, #007bff);
  border-color: rgba(0, 255, 255, 0.4);
  color: #000;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.45);
  transform: scale(1.1);
}

/* ===========================================================
   Responsive Adjustments
   =========================================================== */
@media (max-width: 768px) {
  #brxe-ovxswq .bricks-layout-item .content-wrapper {
    padding: 20px !important;
  }
  #brxe-ovxswq .bricks-pagination {
    margin-top: 40px;
  }
}

/* ===========================================================
   Overflow & Reset Fixes
   =========================================================== */
#brxe-ovxswq,
#brxe-ovxswq * {
  overflow: visible !important;
}

/* ===========================================================
   XTRU Blog — Final Spacing & Layout Clean Fix
   =========================================================== */
#brxe-ovxswq .bricks-layout-item .overlay-wrapper {
  display: none !important;
}

#brxe-ovxswq .bricks-layout-item p:last-child {
  margin-bottom: 0 !important;
}
/* =======================================
   XTRU Single Blog Post — Final Polished Version
   Unified Glow + Navigation + Icon Styling
   ======================================= */

/* --- Post Title --- */
.single-post .brxe-post-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.3);
}

/* --- Meta Info --- */
.single-post .post-meta {
  text-align: center;
  color: #00bfff;
  font-size: 0.95rem;
  margin-bottom: 40px;
  opacity: 0.8;
}

/* --- Featured Image --- */
.single-post .brxe-post-featured-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
  margin-bottom: 40px;
}

/* --- Post Content --- */
.single-post .brxe-post-content {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: left;
}

.single-post .brxe-post-content p {
  margin-bottom: 1.5rem;
}

/* --- Links Inside Content --- */
.single-post .brxe-post-content a {
  color: #00bfff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.single-post .brxe-post-content a:hover {
  color: #66e0ff;
  text-shadow: 0 0 8px rgba(102, 224, 255, 0.4);
}

/* ===========================================================
   Post Navigation (Prev / Next)
   =========================================================== */

.single-post .brxe-post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  border-top: 1px solid rgba(0, 255, 255, 0.08);
  padding-top: 24px;
  gap: 20px;
}

.single-post .brxe-post-navigation a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 rgba(0, 255, 255, 0);
}

/* --- Hover: Glow + Depth --- */
.single-post .brxe-post-navigation a:hover {
  border-color: rgba(0, 255, 255, 0.35);
  background: rgba(0, 255, 255, 0.08);
  color: #00e0ff;
  box-shadow:
    0 0 22px rgba(0, 255, 255, 0.25),
    inset 0 0 12px rgba(0, 255, 255, 0.08);
  transform: translateY(-3px);
}

/* --- Text Inside Navigation --- */
.single-post .brxe-post-navigation a span {
  color: inherit;
  font-weight: 500;
  transition: color 0.3s ease;
}

.single-post .brxe-post-navigation a:hover span {
  color: #7eefff;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.4);
}

/* --- Bricks alignment fix --- */
.brxe-post-navigation .prev-post + .next-post {
  text-align: right;
}
.brxe-post-navigation .next-post {
  justify-content: flex-end;
}

/* --- Override unwanted default link color --- */
.single-post .brxe-post-navigation a:where(:not([class*="btn--"])) {
  color: inherit !important;
  text-decoration: none !important;
}

/* ===========================================================
   Post Sharing Icons — Glow Effect
   =========================================================== */

.brxe-post-sharing {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.brxe-post-sharing svg {
  fill: #00e0ff;
  height: 1.2em;
  width: 1.2em;
  transition: all 0.35s ease;
  filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.25));
}

/* --- Hover Glow Pulse --- */
.brxe-post-sharing a:hover svg {
  fill: #7eefff;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.55))
          drop-shadow(0 0 18px rgba(0, 255, 255, 0.25));
  transform: scale(1.15);
}

/* ===========================================================
   Comments Section
   =========================================================== */

.single-post .brxe-comments {
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 40px;
  border: 1px solid rgba(0, 255, 255, 0.1);
}
.xtru-partner-icon {
  display: flex;
  flex-wrap: wrap;          /* forces wrapping on every screen size */
  justify-content: center;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
  overflow-x: hidden;
}

.xtru-partner-icon img,
.xtru-partner-icon svg {
  flex: 0 1 100px;          /* each logo takes up to 100 px then wraps */
  height: auto;
  opacity: 0.85;
  transition: transform .3s ease, opacity .3s ease, filter .3s ease;
  filter: brightness(1.3) contrast(1.1);
}

.xtru-partner-icon img:hover,
.xtru-partner-icon svg:hover {
  opacity: 1;
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px rgba(0,255,255,.4)) brightness(1.5);
}
.xtru-press .accordion {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

/* ================================
   XTRU - Press & Media (Bricks Accordion)
   ================================ */

.brxe-accordion.xtru-press {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: #e0e0e0;
  font-family: var(--font-base, 'Inter', sans-serif);
}

/* Each accordion item card */
.xtru-press .accordion-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(8px);
}

.xtru-press .accordion-item:hover {
  border-color: rgba(0, 255, 255, 0.25);
}

/* Header wrapper */
.xtru-press .accordion-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  transition: background 0.3s ease;
}

.xtru-press .accordion-title-wrapper:hover {
  background: rgba(0, 255, 255, 0.05);
}

/* Title line */
.xtru-press .accordion-title .title {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Subtitle line */
.xtru-press .accordion-subtitle {
  color: rgba(0, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Icons */
.xtru-press .accordion-title i {
  color: rgba(0, 255, 255, 0.7);
  transition: transform 0.3s ease, color 0.3s ease;
}

.xtru-press .accordion-title-wrapper[aria-expanded="true"] i.expanded {
  transform: rotate(180deg);
  color: rgba(0, 255, 255, 1);
}

/* Content panel */
.xtru-press .accordion-content-wrapper {
  padding: 1.5rem 2rem 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.975rem;
  line-height: 1.75;
  color: #cfcfcf;
  animation: fadeIn 0.3s ease;
}

.xtru-press .accordion-content-wrapper strong {
  color: #fff;
}

.xtru-press .accordion-content-wrapper a {
  color: #00ffff;
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Contact section at bottom */
.xtru-press + .press-contact,
.brxe-accordion + .press-contact {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  margin-top: 3rem;
  text-align: center;
  padding: 2rem 1.5rem;
  color: #ccc;
}

.press-contact h4 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.press-contact a.xtru-btn {
  display: inline-block;
  margin-top: 1rem;
  background: linear-gradient(90deg, #00ffff 0%, #005eff 100%);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.press-contact a.xtru-btn:hover {
  opacity: 0.85;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .xtru-press .accordion-title .title {
    font-size: 1rem;
  }
  .xtru-press .accordion-content-wrapper {
    padding: 1.25rem;
  }
}
/* Cyan pulse for active press release */
.xtru-press .accordion-item.brx-open,
.xtru-press .accordion-item[aria-expanded="true"] {
  position: relative;
  border-color: rgba(0, 255, 255, 0.35);
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.08);
}

.xtru-press .accordion-item.brx-open::before,
.xtru-press .accordion-item[aria-expanded="true"]::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.25), transparent 60%);
  animation: xtruPulse 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes xtruPulse {
  0% { opacity: 0.2; transform: scale(0.98); }
  50% { opacity: 0.45; transform: scale(1.03); }
  100% { opacity: 0.2; transform: scale(0.98); }
} 
/* ===========================
   XTRU Enterprise Contact Page
   =========================== */

/* 1. Page background (animated gradient drift) */
body.contact-page {
  background: linear-gradient(120deg, #030b13, #061a28, #000f1c);
  background-size: 300% 300%;
  animation: xtruGradientDrift 18s ease-in-out infinite;
}

@keyframes xtruGradientDrift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 2. Form wrapper glow and depth */
.fluentform_wrapper_5 {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 196, 255, 0.04), rgba(108, 99, 255, 0.02));
  border: 1px solid rgba(0, 196, 255, 0.08);
  border-radius: 10px;
  padding: 40px 28px;
  box-shadow: inset 0 0 35px rgba(0, 196, 255, 0.05),
              0 0 45px rgba(0, 196, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  max-width: 700px;
  margin-inline: auto;
}

/* 3. Gentle hover lift (form subtly glows when focused) */
.fluentform_wrapper_5:hover {
  box-shadow: inset 0 0 40px rgba(0, 196, 255, 0.08),
              0 0 55px rgba(108, 99, 255, 0.1);
  border-color: rgba(0, 196, 255, 0.12);
}

/* 4. Fade-up animation on load */
@keyframes xtruFormFadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.fluentform_wrapper_5 {
  animation: xtruFormFadeUp 0.8s ease-out forwards;
}

/* 5. Mobile optimization */
@media (max-width: 768px) {
  .fluentform_wrapper_5 {
    padding: 28px 20px;
    border-radius: 8px;
  }
}
/* Force left alignment on all Fluent Forms labels and fields, even inside centered containers */
.fluentform_wrapper_5 .ff-el-group label,
.fluentform_wrapper_5 .ff-el-group input,
.fluentform_wrapper_5 .ff-el-group textarea,
.fluentform_wrapper_5 .ff-el-group select {
  text-align: left !important;
  display: block !important;
  margin: 0 auto 6px 0 !important;
}

/* Make sure the group wrapper aligns properly */
.fluentform_wrapper_5 .ff-el-group {
  text-align: left !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}
/* Prevent scroll anchor from hiding behind header */
#fluentform_5 {
  scroll-margin-top: 140px; /* adjust based on header height */
} 
/* ===========================
   XTRU Pricing Cards (Final Gradient Edition)
   =========================== */

.xtru-pricing {
  position: relative;
  background: linear-gradient(to bottom, rgba(10,15,25,0.95) 0%, rgba(15,25,40,0.85) 100%);
  border: 1px solid rgba(0,196,255,0.08);
  border-radius: 16px;
  padding: 38px 26px;
  text-align: left;
  transition: all 0.5s ease;
  box-shadow: 0 0 25px rgba(0,196,255,0.05), inset 0 0 25px rgba(255,255,255,0.02);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  z-index: 1;
}

/* Shared border glow base */
.xtru-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(120deg, var(--xtru-glow-1), var(--xtru-glow-2));
  background-size: 300% 300%;
  animation: pricingPulse 12s ease infinite;
  opacity: 0.25;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

/* Gradient animation */
@keyframes pricingPulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Gradient + Glow Pairing for Each Card */
.xtru-pricing:nth-child(1) {
  --xtru-glow-1: #00c4ff;
  --xtru-glow-2: #5de3ff;
}

.xtru-pricing:nth-child(2) {
  --xtru-glow-1: #00a6ff;
  --xtru-glow-2: #6c63ff;
}

.xtru-pricing:nth-child(3) {
  --xtru-glow-1: #5d5fff;
  --xtru-glow-2: #8a3dff;
}

.xtru-pricing:nth-child(4) {
  --xtru-glow-1: #8a3dff;
  --xtru-glow-2: #b44dff;
}

/* Hover effect — stronger glow from same hue band */
.xtru-pricing:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px var(--xtru-glow-1),
              0 0 60px var(--xtru-glow-2, rgba(0,196,255,0.3));
  border-color: rgba(255,255,255,0.15);
}

.xtru-pricing:hover::before {
  opacity: 0.45;
  animation-duration: 6s;
}

/* Headings */
.xtru-pricing h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.xtru-pricing .price {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--xtru-glow-1);
  text-shadow: 0 0 15px var(--xtru-glow-2);
  margin: 10px 0 16px;
}

.xtru-pricing .period {
  font-size: 0.95rem;
  color: #a0b8cf;
}

/* Description text */
.xtru-pricing p {
  font-size: 0.95rem;
  color: #b0c3d9;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Features */
.xtru-pricing ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.xtru-pricing ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #9fb5ca;
  font-size: 0.95rem;
  line-height: 1.6;
}

.xtru-pricing ul li::before {
  content: "•";
  color: var(--xtru-glow-1);
  position: absolute;
  left: 0;
  top: 0;
}

/* Buttons */
.xtru-pricing .brxe-button {
  margin-top: auto;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg, var(--xtru-glow-1), var(--xtru-glow-2));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(0,196,255,0.25);
  transition: all 0.3s ease;
}

.xtru-pricing .brxe-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--xtru-glow-2);
}

/* Mobile */
@media (max-width: 768px) {
  .xtru-pricing {
    padding: 28px 20px;
  }
  .xtru-pricing .price {
    font-size: 1.9rem;
  }
}
/* ===========================
   XTRU Pricing Cards — Final Refined Motion
   =========================== */

.xtru-pricing {
  position: relative;
  background: linear-gradient(to bottom, #070b12 0%, #0d1624 60%, #142235 100%);
  border-radius: 14px;
  padding: 36px 28px;
  color: #fff;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45),
              inset 0 0 20px rgba(0, 196, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  border: 1px solid rgba(0, 196, 255, 0.06);
  overflow: hidden;
  backdrop-filter: blur(6px);
}

/* Gradient hue difference per card */
.xtru-pricing:nth-child(1) {
  background: linear-gradient(to bottom right, #071018, #0d1a2a 70%);
}
.xtru-pricing:nth-child(2) {
  background: linear-gradient(to bottom right, #08101a, #111e32 70%);
}
.xtru-pricing:nth-child(3) {
  background: linear-gradient(to bottom right, #09111c, #14243a 70%);
}
.xtru-pricing:nth-child(4) {
  background: linear-gradient(to bottom right, #0a0e1f, #19103a 70%);
}

/* Hover motion + subtle glow */
.xtru-pricing:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 196, 255, 0.25),
              0 0 60px rgba(108, 99, 255, 0.15),
              inset 0 0 20px rgba(255,255,255,0.02);
  border-color: rgba(0, 196, 255, 0.18);
}

/* Enterprise Pulse (slower, more elegant) */
.xtru-pricing:nth-child(4)::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(180, 77, 255, 0.25), transparent 70%);
  animation: xtruPulse 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes xtruPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.03); }
}

/* Typography */
.xtru-pricing h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}

.xtru-pricing .price {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 22px;
  color: #fff;
}

.xtru-pricing ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.xtru-pricing ul li {
  color: #c9d6e6;
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* CTA Buttons */
.xtru-pricing .brxe-button {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 24px;
  padding: 12px 0;
  border-radius: 6px;
  font-weight: 600;
  background: linear-gradient(90deg, #00c4ff, #6c63ff);
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 196, 255, 0.25);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.xtru-pricing .brxe-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(0, 196, 255, 0.35),
              0 0 36px rgba(108, 99, 255, 0.25);
}

/* Smooth shimmer effect */
.xtru-pricing .brxe-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
  transform: skewX(-20deg);
  transition: 0.8s ease;
}

.xtru-pricing .brxe-button:hover::after {
  left: 130%;
}

/* Ambient gradient sweep across all cards */
.pricing-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
}

.pricing-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 196, 255, 0) 0%,
    rgba(0, 196, 255, 0.05) 45%,
    rgba(108, 99, 255, 0.08) 55%,
    rgba(180, 77, 255, 0) 100%
  );
  animation: xtruSweep 22s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes xtruSweep {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}
