/* ============================================================
   DFX COMPONENTS — Universal Styles
   Testimonials | Facts | Process | Contact Form
   ============================================================ */

/* ============================================================
   PAGE HERO — Fix overlap & spacing
   ============================================================ */
.page-title-area {
  position: relative !important;
  top: 0 !important;
  padding-top: 130px !important;
  padding-bottom: 60px !important;
  background: linear-gradient(135deg, #00234b, #0057a8, #0099fa, #00234b);
  background-size: 300% 300%;
  animation: dfx-bg-move 10s ease infinite;
  text-align: center;
  z-index: 1;
}
@keyframes dfx-bg-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.page-title-area .bold-heading {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0;
}
.page-title-area .resp-heading-main {
  background: linear-gradient(90deg, #7dd3fc, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-title-area p {
  color: rgba(255,255,255,0.82) !important;
  font-size: 16px !important;
  margin-top: 12px !important;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
/* Ensure section after hero has no overlap */
.page-title-area + section,
.page-title-area + div {
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .page-title-area {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }
  .page-title-area .bold-heading { font-size: 32px; }
}

/* ---- Shared Utilities ---- */
.dfx-gradient-text {
  background: linear-gradient(309deg, rgba(0,153,250,1) 6%, rgba(49,76,144,1) 55%, rgba(0,35,75,1) 98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dfx-section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,153,250,0.12), rgba(0,35,75,0.08));
  border: 1px solid rgba(0,153,250,0.25);
  color: #0099fa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ============================================================
   FACTS SECTION — Same style as "What We Offer" (dfx-why-service)
   ============================================================ */
.dfx-facts-section {
  padding: 90px 0;
  background: #fff;
  overflow: hidden;
}
.dfx-facts-section::before,
.dfx-facts-section::after { display: none; }

.dfx-facts-header {
  text-align: center;
  margin-bottom: 56px;
}
.dfx-facts-header .dfx-section-badge {
  background: linear-gradient(135deg, rgba(0,153,250,0.12), rgba(0,35,75,0.08));
  border-color: rgba(0,153,250,0.25);
  color: #0099fa;
}
.dfx-facts-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #3C4856;
}
.dfx-facts-header p {
  max-width: 520px;
  margin: 0 auto;
  color: #6084a4;
  font-size: 15px;
}

/* Grid — 3 cols */
.dfx-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card — same as dfx-why-row */
.dfx-fact-card {
  background: #f7fafd;
  border-radius: 14px;
  padding: 24px 22px;
  border: 1px solid rgba(0,153,250,0.07);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.dfx-fact-card::before { display: none; }
.dfx-fact-card::after  { display: none; }
.dfx-fact-card:hover {
  transform: translateX(6px);
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,35,75,0.09);
}

/* Icon — same as dfx-why-row__icon */
.dfx-fact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,153,250,0.1), rgba(0,35,75,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #0099fa;
  flex-shrink: 0;
  transition: 0.3s;
  margin-bottom: 0;
}
.dfx-fact-card:hover .dfx-fact-icon {
  background: linear-gradient(135deg, #0099fa, #00234b);
  color: #fff;
}

/* Text block */
.dfx-fact-body { flex: 1; }

.dfx-fact-number {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #0099fa, #00234b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dfx-fact-label {
  font-size: 14px;
  font-weight: 700;
  color: #3C4856;
  margin-bottom: 4px;
  line-height: 1.3;
}
.dfx-fact-desc {
  font-size: 12.5px;
  color: #6084a4;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .dfx-facts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dfx-facts-grid { grid-template-columns: 1fr; gap: 12px; }
  .dfx-facts-header h2 { font-size: 26px; }
}

/* ============================================================
   PROCESS SECTION
  color: #6084a4;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.dfx-process-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
}
.dfx-process-header {
  text-align: center;
  margin-bottom: 60px;
}
.dfx-process-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #3C4856;
  margin-bottom: 12px;
}
.dfx-process-header p { color: #6084a4; max-width: 500px; margin: 0 auto; }
.dfx-process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.dfx-process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #0099fa, #00234b);
  transform: translateX(-50%);
}
.dfx-process-step {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 0 0 50px;
  position: relative;
}
.dfx-process-step:nth-child(odd) { flex-direction: row; padding-right: calc(50% + 40px); }
.dfx-process-step:nth-child(even) { flex-direction: row-reverse; padding-left: calc(50% + 40px); }
.dfx-process-step-dot {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(309deg, rgba(0,153,250,1) 6%, rgba(0,35,75,1) 98%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(0,153,250,0.12);
  transition: box-shadow 0.3s;
}
.dfx-process-step:hover .dfx-process-step-dot {
  box-shadow: 0 0 0 10px rgba(0,153,250,0.18);
}
.dfx-process-step-content {
  background: #fff;
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: 0 4px 24px rgba(0,35,75,0.08);
  border: 1px solid rgba(0,153,250,0.1);
  flex: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}
.dfx-process-step:hover .dfx-process-step-content {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,35,75,0.13);
}
.dfx-process-step-icon {
  font-size: 26px;
  margin-bottom: 12px;
  background: linear-gradient(309deg, rgba(0,153,250,1) 6%, rgba(0,35,75,1) 98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dfx-process-step-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #3C4856;
  margin-bottom: 8px;
}
.dfx-process-step-content p {
  font-size: 14px;
  color: #6084a4;
  margin: 0;
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS SECTION — Premium slider
   ============================================================ */
.dfx-testimonials-section {
  padding: 90px 0 70px;
  background: linear-gradient(135deg, #f7fafd 0%, #eef4fb 100%);
  position: relative;
  overflow: hidden;
}
.dfx-testimonials-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,153,250,0.07) 0%, transparent 70%);
  pointer-events: none;
  animation: dfx-float-1 8s ease-in-out infinite;
}
.dfx-testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,35,75,0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: dfx-float-2 10s ease-in-out infinite;
}
.dfx-testimonials-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.dfx-testimonials-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #3C4856;
  margin: 12px 0 14px;
  line-height: 1.25;
}
.dfx-testimonials-header p { color: #6084a4; font-size: 15px; max-width: 480px; margin: 0 auto; }

/* Slider track */
.dfx-testi-track-wrapper {
  overflow: hidden;
  position: relative;
  padding: 12px 4px 16px;
}
/* Fade edges */
.dfx-testi-track-wrapper::before,
.dfx-testi-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.dfx-testi-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #eef4fb, transparent);
}
.dfx-testi-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #eef4fb, transparent);
}
.dfx-testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  align-items: stretch;
}

/* Card */
.dfx-testi-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: 0 4px 24px rgba(0,35,75,0.07);
  border: 1.5px solid rgba(0,153,250,0.08);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden;
}
/* Animated gradient top border on hover */
.dfx-testi-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0099fa, #00234b, #0099fa);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 24px 24px 0 0;
}
.dfx-testi-card:hover::after { transform: scaleX(1); }
/* Big quote mark */
.dfx-testi-card::before {
  content: '\201C';
  position: absolute;
  top: 10px; right: 20px;
  font-size: 90px;
  line-height: 1;
  color: rgba(0,153,250,0.07);
  font-family: Georgia, serif;
  pointer-events: none;
  transition: color 0.3s;
}
.dfx-testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,35,75,0.13);
  border-color: rgba(0,153,250,0.2);
}
.dfx-testi-card:hover::before { color: rgba(0,153,250,0.12); }

/* Featured card */
.dfx-testi-card--featured {
  background: linear-gradient(135deg, #00234b 0%, #0057a8 60%, #0099fa 100%);
  border-color: transparent;
  box-shadow: 0 8px 40px rgba(0,35,75,0.25);
}
.dfx-testi-card--featured::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
}
.dfx-testi-card--featured::before { color: rgba(255,255,255,0.1); }
.dfx-testi-card--featured p,
.dfx-testi-card--featured .dfx-testi-author strong,
.dfx-testi-card--featured .dfx-testi-author span { color: rgba(255,255,255,0.9) !important; }
.dfx-testi-card--featured .dfx-testi-stars { color: #ffd700; }
.dfx-testi-card--featured:hover {
  box-shadow: 0 24px 60px rgba(0,35,75,0.35);
}

/* Stars */
.dfx-testi-stars {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 3px;
  display: block;
}

/* Review text */
.dfx-testi-card > p {
  font-size: 14px;
  color: #6084a4;
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Author */
.dfx-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.dfx-testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0099fa, #00234b);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,153,250,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dfx-testi-card:hover .dfx-testi-avatar {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,153,250,0.4);
}
.dfx-testi-author strong {
  display: block;
  font-size: 15px;
  color: #3C4856;
  font-weight: 700;
  margin-bottom: 2px;
}
.dfx-testi-author span { font-size: 12px; color: #6084a4; }

/* Controls */
.dfx-testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
  position: relative;
  z-index: 1;
}
.dfx-testi-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(0,153,250,0.25);
  background: #fff;
  color: #0099fa;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,35,75,0.08);
}
.dfx-testi-btn:hover {
  background: linear-gradient(135deg, #0099fa, #00234b);
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0,153,250,0.3);
}
.dfx-testi-dots { display: flex; gap: 8px; align-items: center; }
.dfx-testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,153,250,0.2);
  cursor: pointer;
  transition: all 0.35s ease;
  border: none;
}
.dfx-testi-dot.active {
  background: linear-gradient(135deg, #0099fa, #00234b);
  width: 28px;
  border-radius: 4px;
}
.dfx-testi-dot:hover:not(.active) {
  background: rgba(0,153,250,0.4);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 991px) {
  .dfx-testi-card { flex: 0 0 auto; }
  .dfx-testimonials-header h2 { font-size: 28px; }
}
@media (max-width: 767px) {
  .dfx-testimonials-section { padding: 60px 0 50px; }
  .dfx-testi-card { flex: 0 0 auto; padding: 24px 20px; }
  .dfx-testimonials-header h2 { font-size: 24px; }
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.dfx-contact-section {
  padding: 90px 0;
  background: #fff;
}
.dfx-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.dfx-contact-info h2 {
  font-size: 32px;
  font-weight: 800;
  color: #3C4856;
  margin: 12px 0 16px;
  line-height: 1.3;
}
.dfx-contact-info > p { color: #6084a4; margin-bottom: 36px; }
.dfx-contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.dfx-contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dfx-contact-info-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,153,250,0.1), rgba(0,35,75,0.06));
  display: flex; align-items: center; justify-content: center;
  color: #0099fa;
  font-size: 16px;
  flex-shrink: 0;
}
.dfx-contact-info-item span { display: block; font-size: 11px; color: #6084a4; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.dfx-contact-info-item a { font-size: 14px; font-weight: 600; color: #3C4856; }
.dfx-contact-social { display: flex; gap: 12px; }
.dfx-contact-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,153,250,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #0099fa;
  font-size: 15px;
  transition: 0.3s;
}
.dfx-contact-social a:hover {
  background: linear-gradient(309deg, rgba(0,153,250,1) 6%, rgba(0,35,75,1) 98%);
  color: #fff;
  border-color: transparent;
}

/* Form */
.dfx-contact-form-wrap {
  background: #f7fafd;
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 4px 32px rgba(0,35,75,0.07);
  border: 1px solid rgba(0,153,250,0.08);
}
.dfx-form { display: flex; flex-direction: column; gap: 0; }
.dfx-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.dfx-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.dfx-form-group--full { margin-bottom: 20px; }
.dfx-form-group label { font-size: 13px; font-weight: 600; color: #3C4856; }
.dfx-form-group label span { color: #e74c3c; }
.dfx-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.dfx-input-wrap > i {
  position: absolute;
  left: 14px;
  color: #0099fa;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}
.dfx-input-wrap input,
.dfx-input-wrap select,
.dfx-input-wrap textarea {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid rgba(0,153,250,0.2);
  border-radius: 12px;
  font-size: 14px;
  color: #3C4856;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'Inter', sans-serif;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.dfx-input-wrap input:focus,
.dfx-input-wrap select:focus,
.dfx-input-wrap textarea:focus {
  border-color: #0099fa;
  box-shadow: 0 0 0 3px rgba(0,153,250,0.1);
}
.dfx-textarea-wrap { align-items: flex-start; }
.dfx-textarea-wrap > i { top: 14px; }
.dfx-input-wrap textarea { resize: vertical; min-height: 110px; }
.dfx-select-wrap::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 14px;
  color: #6084a4;
  pointer-events: none;
}
.dfx-field-error { font-size: 12px; color: #e74c3c; min-height: 16px; }
.dfx-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(309deg, rgba(0,153,250,1) 6%, rgba(49,76,144,1) 55%, rgba(0,35,75,1) 98%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}
.dfx-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,35,75,0.25);
}
.dfx-btn-icon { font-size: 14px; }
.dfx-form-success {
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.3);
  border-radius: 10px;
  color: #00a878;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   WHY CHOOSE US — Fix for service pages
   ============================================================ */
.why-choose-us .section-title.text-start h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
}
.single-why-choose-us {
  position: relative; /* needed for ::before pseudo */
}

/* ============================================================
   CTA BOX — ensure no overflow
   ============================================================ */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-text h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.cta-text p  { margin: 0; font-size: 14px; }
@media (max-width: 767px) {
  .cta-box { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  /* Testimonials — JS handles card width, CSS just removes old min-width */
  .dfx-testi-card { flex: 0 0 auto; }
  /* Process — single column */
  .dfx-process-timeline::before { left: 22px; transform: none; }
  .dfx-process-step,
  .dfx-process-step:nth-child(odd),
  .dfx-process-step:nth-child(even) {
    flex-direction: row !important;
    padding: 0 0 40px 70px !important;
  }
  .dfx-process-step-dot { left: 0; transform: none; }
  .dfx-contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 767px) {
  .dfx-testi-card { flex: 0 0 auto; }
  .dfx-form-row { grid-template-columns: 1fr; }
  .dfx-contact-form-wrap { padding: 28px 20px; }
  .dfx-facts-header h2,
  .dfx-process-header h2,
  .dfx-testimonials-header h2 { font-size: 28px; }
  .dfx-facts-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
}



/* Wider dropdown for Services (8 items) */
.startp-nav nav .navbar-nav .nav-item .dropdown_menu {
  width: 230px;
  padding: 12px 8px;
  background: rgba(10, 20, 50, 0.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25) !important;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li a {
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 16px;
  color: rgba(255,255,255,0.75) !important;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li a:hover {
  background: rgba(0,153,250,0.15) !important;
  color: #fff !important;
  padding-left: 22px;
}
/* Solutions dropdown — wider for rich items */
.dfx-solutions-dropdown {
  width: 280px !important;
}
.dfx-solutions-dropdown .nav-link {
  padding: 12px 16px !important;
  align-items: flex-start !important;
}
.dfx-solutions-dropdown .nav-link strong {
  color: #fff !important;
  font-size: 13.5px;
  display: block;
  margin-bottom: 2px;
}
.dfx-solutions-dropdown .nav-link small {
  color: rgba(255,255,255,0.5) !important;
  font-size: 11.5px;
  font-weight: 400;
  display: block;
}
.dfx-solutions-dropdown .nav-link:hover strong { color: #38bdf8 !important; }
/* Get a Quote button */
.btn-nav.btn-primary.r-quote {
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 8px;
  white-space: nowrap;
}

/* ============================================================
   WHY CHOOSE US — New design: left animated + right content
   ============================================================ */
.dfx-why-section {
  padding: 90px 0;
  background: #fff;
  overflow: hidden;
}
.dfx-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
/* LEFT — animated visual */
.dfx-why-visual {
  position: relative;
  height: 480px;
}
.dfx-why-visual__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
  border-radius: 32px;
  overflow: hidden;
}
.dfx-why-visual__bg::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,153,250,0.12) 0%, transparent 70%);
  top: -60px; left: -60px;
  animation: dfx-float-1 6s ease-in-out infinite;
}
.dfx-why-visual__bg::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,35,75,0.08) 0%, transparent 70%);
  bottom: -40px; right: -40px;
  animation: dfx-float-2 8s ease-in-out infinite;
}
@keyframes dfx-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 20px) scale(1.1); }
}
@keyframes dfx-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, -15px) scale(1.08); }
}
/* Floating stat cards */
.dfx-why-float-cards {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.dfx-why-float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,35,75,0.12);
  border: 1px solid rgba(0,153,250,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.dfx-why-float-card:nth-child(1) {
  top: 40px; left: 30px;
  animation: dfx-card-float-premium-a 5s ease-in-out infinite;
}
.dfx-why-float-card:nth-child(2) {
  top: 130px; right: 20px;
  animation: dfx-card-float-premium-b 6.5s ease-in-out infinite;
}
.dfx-why-float-card:nth-child(3) {
  bottom: 130px; left: 20px;
  animation: dfx-card-float-premium-a 7s ease-in-out infinite reverse;
}
.dfx-why-float-card:nth-child(4) {
  bottom: 40px; right: 30px;
  animation: dfx-card-float-premium-b 5.5s ease-in-out infinite reverse;
}
@keyframes dfx-card-float-premium-a {
  0%   { transform: translateY(0px) rotate(0deg); }
  30%  { transform: translateY(-12px) rotate(1deg); }
  60%  { transform: translateY(-6px) rotate(-0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes dfx-card-float-premium-b {
  0%   { transform: translateY(0px) rotate(0deg); }
  40%  { transform: translateY(10px) rotate(-1deg); }
  70%  { transform: translateY(4px) rotate(0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
.dfx-why-float-card__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,153,250,0.12), rgba(0,35,75,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: #0099fa;
  flex-shrink: 0;
}
.dfx-why-float-card__text strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #3C4856;
  line-height: 1;
  margin-bottom: 3px;
  background: linear-gradient(309deg, rgba(0,153,250,1) 6%, rgba(0,35,75,1) 98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dfx-why-float-card__text span {
  font-size: 11px;
  color: #6084a4;
  font-weight: 500;
}
/* Center image */
.dfx-why-visual__img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  z-index: 1;
  animation: dfx-img-breathe 4s ease-in-out infinite;
}
@keyframes dfx-img-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -52%) scale(1.03); }
}
/* RIGHT — content */
.dfx-why-content .dfx-section-badge { margin-bottom: 16px; }
.dfx-why-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #3C4856;
  line-height: 1.25;
  margin-bottom: 16px;
}
.dfx-why-content > p {
  color: #6084a4;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.dfx-why-items { display: flex; flex-direction: column; gap: 20px; }
.dfx-why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: #f7fafd;
  border-radius: 16px;
  border: 1px solid rgba(0,153,250,0.08);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.dfx-why-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(0,35,75,0.09);
  background: #fff;
}
.dfx-why-item__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,153,250,0.12), rgba(0,35,75,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #0099fa;
  flex-shrink: 0;
  transition: 0.3s;
}
.dfx-why-item:hover .dfx-why-item__icon {
  background: linear-gradient(135deg, #0099fa, #00234b);
  color: #fff;
}
.dfx-why-item__text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #3C4856;
  margin-bottom: 4px;
}
.dfx-why-item__text p {
  font-size: 13px;
  color: #6084a4;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .dfx-why-inner { grid-template-columns: 1fr; gap: 40px; }
  .dfx-why-visual { height: 320px; }
  .dfx-why-content h2 { font-size: 28px; }
}

/* ============================================================
   HOW WE WORK — Scroll-triggered roll-in animation
   ============================================================ */
.dfx-process-home {
  padding: 90px 0;
  background: linear-gradient(135deg, #f7fafd 0%, #eef4fb 100%);
  overflow: hidden;
}
.dfx-process-home__header {
  text-align: center;
  margin-bottom: 64px;
}
.dfx-process-home__header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #3C4856;
  margin-bottom: 12px;
}
.dfx-process-home__header p { color: #6084a4; max-width: 500px; margin: 0 auto; }

/* Steps row */
.dfx-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
/* Connector line */
.dfx-process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(10% + 24px);
  right: calc(10% + 24px);
  height: 2px;
  background: linear-gradient(90deg, #0099fa, #00234b);
  z-index: 0;
}
/* Each step */
.dfx-process-step-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  /* Roll-in animation state */
  opacity: 0;
  transform: translateY(60px) rotateX(45deg);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform-origin: top center;
}
.dfx-process-step-home.dfx-step-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}
/* Stagger delays */
.dfx-process-step-home:nth-child(1) { transition-delay: 0s; }
.dfx-process-step-home:nth-child(2) { transition-delay: 0.15s; }
.dfx-process-step-home:nth-child(3) { transition-delay: 0.3s; }
.dfx-process-step-home:nth-child(4) { transition-delay: 0.45s; }
.dfx-process-step-home:nth-child(5) { transition-delay: 0.6s; }

.dfx-process-step-home__dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0099fa, #00234b);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 24px;
  box-shadow: 0 0 0 8px rgba(0,153,250,0.1);
  position: relative;
  z-index: 2;
  transition: box-shadow 0.3s, transform 0.3s;
}
.dfx-process-step-home:hover .dfx-process-step-home__dot {
  box-shadow: 0 0 0 12px rgba(0,153,250,0.15);
  transform: scale(1.1);
}
.dfx-process-step-home__card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 18px;
  box-shadow: 0 4px 24px rgba(0,35,75,0.07);
  border: 1px solid rgba(0,153,250,0.08);
  width: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.dfx-process-step-home:hover .dfx-process-step-home__card {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,35,75,0.13);
}
.dfx-process-step-home__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0099fa;
  margin-bottom: 8px;
}
.dfx-process-step-home__card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #3C4856;
  margin-bottom: 8px;
  line-height: 1.3;
}
.dfx-process-step-home__card p {
  font-size: 12.5px;
  color: #6084a4;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .dfx-process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .dfx-process-steps::before { display: none; }
}
@media (max-width: 600px) {
  .dfx-process-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .dfx-process-home__header h2 { font-size: 26px; }
}


/* ============================================================
   1. NAVBAR — Fix spacing, dropdown width & styling
   ============================================================ */

/* Nav items — give breathing room */
.startp-nav nav .navbar-nav .nav-item a {
  margin-left: 8px !important;
  margin-right: 8px !important;
  font-size: 14px !important;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

/* Dropdown — dark glass, wider, proper padding */
.startp-nav nav .navbar-nav .nav-item .dropdown_menu {
  width: 240px !important;
  padding: 10px 8px !important;
  background: rgba(8, 18, 42, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3) !important;
}

/* Dropdown links — proper spacing, no clipping */
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li a {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  padding: 9px 14px !important;
  margin: 0 !important;
  color: rgba(200,215,235,0.85) !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
  transition: background 0.2s, color 0.2s, padding-left 0.25s !important;
  line-height: 1.4 !important;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li a:hover {
  background: rgba(0,153,250,0.18) !important;
  color: #fff !important;
  padding-left: 20px !important;
}

/* Solutions dropdown — wider for rich content */
.dfx-solutions-dd {
  width: 270px !important;
}
.dfx-solutions-dd li a {
  padding: 12px 14px !important;
  align-items: flex-start !important;
}
.dfx-solutions-dd li a strong {
  display: block !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin-bottom: 2px !important;
  -webkit-text-fill-color: #fff !important;
}
.dfx-solutions-dd li a small {
  display: block !important;
  font-size: 11.5px !important;
  color: rgba(180,200,220,0.6) !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
}
.dfx-solutions-dd li a:hover strong { color: #38bdf8 !important; -webkit-text-fill-color: #38bdf8 !important; }

/* Get a Quote button */
.btn-nav.r-quote {
  font-size: 13px !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  white-space: nowrap !important;
  margin-left: 12px !important;
}

/* ============================================================
   2. WHY CHOOSE US — Left animated visual + Right content
      Used on service pages via .dfx-why-service class
   ============================================================ */
.dfx-why-service {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}
.dfx-why-service .dfx-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* --- LEFT: Animated visual panel --- */
.dfx-why-left {
  position: relative;
  height: 460px;
}
.dfx-why-left__bg {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, #eef6ff 0%, #e0f0ff 100%);
  overflow: hidden;
}
/* Animated blobs */
.dfx-why-left__bg::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,153,250,0.14) 0%, transparent 70%);
  top: -80px; left: -80px;
  animation: dfxBlobA 7s ease-in-out infinite;
}
.dfx-why-left__bg::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,35,75,0.09) 0%, transparent 70%);
  bottom: -50px; right: -50px;
  animation: dfxBlobB 9s ease-in-out infinite;
}
@keyframes dfxBlobA {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(24px,20px) scale(1.12); }
}
@keyframes dfxBlobB {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-18px,-16px) scale(1.1); }
}

/* Center image */
.dfx-why-left__img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  z-index: 2;
  animation: dfxImgFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 32px rgba(0,35,75,0.15));
}
@keyframes dfxImgFloat {
  0%,100% { transform: translate(-50%,-50%) translateY(0); }
  50%      { transform: translate(-50%,-50%) translateY(-10px); }
}

/* Floating stat cards */
.dfx-why-left__cards { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.dfx-why-stat {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(0,35,75,0.13);
  border: 1px solid rgba(0,153,250,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}
.dfx-why-stat:nth-child(1) { top: 28px;  left: 24px;  animation: dfxStatA 5s ease-in-out infinite; }
.dfx-why-stat:nth-child(2) { top: 120px; right: 16px; animation: dfxStatB 6s ease-in-out infinite; }
.dfx-why-stat:nth-child(3) { bottom: 120px; left: 16px; animation: dfxStatA 7s ease-in-out infinite reverse; }
.dfx-why-stat:nth-child(4) { bottom: 28px; right: 24px; animation: dfxStatB 5.5s ease-in-out infinite reverse; }
@keyframes dfxStatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes dfxStatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

.dfx-why-stat__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,153,250,0.12), rgba(0,35,75,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #0099fa;
  flex-shrink: 0;
}
.dfx-why-stat__val {
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
  background: linear-gradient(135deg, #0099fa, #00234b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dfx-why-stat__lbl { font-size: 10.5px; color: #6084a4; font-weight: 500; }

/* --- RIGHT: Content --- */
.dfx-why-right .dfx-section-badge { margin-bottom: 14px; }
.dfx-why-right h2 {
  font-size: 32px;
  font-weight: 800;
  color: #3C4856;
  line-height: 1.25;
  margin-bottom: 14px;
}
.dfx-why-right > p {
  color: #6084a4;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.dfx-why-list { display: flex; flex-direction: column; gap: 16px; }
.dfx-why-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #f7fafd;
  border-radius: 14px;
  border: 1px solid rgba(0,153,250,0.07);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  cursor: default;
}
.dfx-why-row:hover {
  transform: translateX(6px);
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,35,75,0.09);
}
.dfx-why-row__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,153,250,0.1), rgba(0,35,75,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #0099fa;
  flex-shrink: 0;
  transition: 0.3s;
}
.dfx-why-row:hover .dfx-why-row__icon {
  background: linear-gradient(135deg, #0099fa, #00234b);
  color: #fff;
}
.dfx-why-row h4 { font-size: 14.5px; font-weight: 700; color: #3C4856; margin-bottom: 4px; }
.dfx-why-row p  { font-size: 13px; color: #6084a4; margin: 0; line-height: 1.6; }

@media (max-width: 991px) {
  .dfx-why-service .dfx-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .dfx-why-left { height: 300px; }
  .dfx-why-right h2 { font-size: 26px; }
}
@media (max-width: 600px) {
  .dfx-why-left { height: 240px; }
  .dfx-why-stat { display: none; }
  .dfx-why-left__img { width: 75%; }
}

/* ============================================================
   3. HOW WE WORK — Scroll-triggered roll-in animation
      Used on service pages via .dfx-process-scroll
   ============================================================ */
.dfx-process-scroll {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafd 0%, #eef4fb 100%);
  overflow: hidden;
}
.dfx-process-scroll__head {
  text-align: center;
  margin-bottom: 60px;
}
.dfx-process-scroll__head h2 {
  font-size: 34px;
  font-weight: 800;
  color: #3C4856;
  margin-bottom: 10px;
}
.dfx-process-scroll__head p { color: #6084a4; max-width: 500px; margin: 0 auto; }

/* Steps row */
.dfx-pscroll-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
/* Connector line between dots */
.dfx-pscroll-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(10% + 4px);
  right: calc(10% + 4px);
  height: 2px;
  background: linear-gradient(90deg, #0099fa 0%, #00234b 100%);
  z-index: 0;
  opacity: 0.25;
}

/* Individual step */
.dfx-pscroll-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
  /* Initial hidden state — roll from below */
  opacity: 0;
  transform: translateY(50px) rotateX(40deg);
  transform-origin: top center;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
/* Stagger each step */
.dfx-pscroll-step:nth-child(1) { transition-delay: 0.0s; }
.dfx-pscroll-step:nth-child(2) { transition-delay: 0.12s; }
.dfx-pscroll-step:nth-child(3) { transition-delay: 0.24s; }
.dfx-pscroll-step:nth-child(4) { transition-delay: 0.36s; }
.dfx-pscroll-step:nth-child(5) { transition-delay: 0.48s; }
/* Visible state */
.dfx-pscroll-step.is-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

/* Dot */
.dfx-pscroll-dot {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0099fa, #00234b);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 7px rgba(0,153,250,0.1);
  position: relative; z-index: 2;
  transition: box-shadow 0.3s, transform 0.3s;
}
.dfx-pscroll-step:hover .dfx-pscroll-dot {
  box-shadow: 0 0 0 12px rgba(0,153,250,0.15);
  transform: scale(1.08);
}

/* Card */
.dfx-pscroll-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 16px;
  box-shadow: 0 4px 20px rgba(0,35,75,0.07);
  border: 1px solid rgba(0,153,250,0.08);
  width: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.dfx-pscroll-step:hover .dfx-pscroll-card {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,35,75,0.12);
}
.dfx-pscroll-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0099fa;
  margin-bottom: 6px;
}
.dfx-pscroll-card h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #3C4856;
  margin-bottom: 6px;
  line-height: 1.3;
}
.dfx-pscroll-card p {
  font-size: 12px;
  color: #6084a4;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .dfx-pscroll-steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .dfx-pscroll-steps::before { display: none; }
}
@media (max-width: 600px) {
  .dfx-pscroll-steps { grid-template-columns: 1fr 1fr; gap: 14px; }
  .dfx-process-scroll__head h2 { font-size: 24px; }
}


/* ============================================================
   PROCESS — Scroll-triggered roll-in on old item cards
   ============================================================ */
.dfx-process-item-anim {
  opacity: 0;
  transform: translateY(48px) rotateX(35deg);
  transform-origin: top center;
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--delay, 0s);
}
.dfx-process-item-anim.is-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}


/* ============================================================
   HOW WE WORK — Left visual + Right content, alternating
   ============================================================ */
.dfx-hw-section {
  padding: 90px 0;
  background: #fff;
  overflow: hidden;
}
.dfx-hw-header {
  text-align: center;
  margin-bottom: 70px;
}
.dfx-hw-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #3C4856;
  margin-bottom: 10px;
}
.dfx-hw-header p {
  color: #6084a4;
  max-width: 500px;
  margin: 0 auto;
  font-size: 15px;
}

/* Each row */
.dfx-hw-steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.dfx-hw-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* Flip: content left, visual right */
.dfx-hw-row--flip {
  direction: rtl;
}
.dfx-hw-row--flip > * {
  direction: ltr;
}

/* Scroll animation */
.dfx-hw-anim {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--hw-delay, 0s);
}
.dfx-hw-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- VISUAL SIDE ---- */
.dfx-hw-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
}

/* Animated ring */
.dfx-hw-visual__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: dfxRingSpin 8s linear infinite;
}
.dfx-hw-visual__ring--1 {
  width: 220px; height: 220px;
  border-color: rgba(0,153,250,0.2);
  border-top-color: rgba(0,153,250,0.7);
  animation-duration: 7s;
}
.dfx-hw-visual__ring--2 {
  width: 220px; height: 220px;
  border-color: rgba(49,76,144,0.15);
  border-right-color: rgba(49,76,144,0.6);
  animation-duration: 9s;
  animation-direction: reverse;
}
.dfx-hw-visual__ring--3 {
  width: 220px; height: 220px;
  border-color: rgba(0,35,75,0.12);
  border-bottom-color: rgba(0,35,75,0.5);
  animation-duration: 11s;
}
.dfx-hw-visual__ring--4 {
  width: 220px; height: 220px;
  border-color: rgba(0,153,250,0.18);
  border-left-color: rgba(0,153,250,0.65);
  animation-duration: 6s;
  animation-direction: reverse;
}
@keyframes dfxRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Inner glow bg */
.dfx-hw-visual::before {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,153,250,0.08) 0%, transparent 70%);
  animation: dfxGlowPulse 3s ease-in-out infinite;
}
@keyframes dfxGlowPulse {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.15); opacity: 1; }
}

/* Center icon circle */
.dfx-hw-visual__circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0099fa, #00234b);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 40px rgba(0,153,250,0.35);
  animation: dfxIconFloat 4s ease-in-out infinite;
}
@keyframes dfxIconFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Step number badge */
.dfx-hw-visual__num {
  position: absolute;
  bottom: 20px; right: calc(50% - 80px);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(0,153,250,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #0099fa;
  box-shadow: 0 4px 12px rgba(0,35,75,0.1);
  z-index: 3;
}

/* ---- CONTENT SIDE ---- */
.dfx-hw-content {
  padding: 8px 0;
}
.dfx-hw-content__step {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0099fa;
  background: rgba(0,153,250,0.08);
  border: 1px solid rgba(0,153,250,0.18);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.dfx-hw-content h3 {
  font-size: 26px;
  font-weight: 800;
  color: #3C4856;
  margin-bottom: 14px;
  line-height: 1.25;
}
.dfx-hw-content p {
  font-size: 15px;
  color: #6084a4;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 420px;
}
.dfx-hw-content__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,153,250,0.08);
  border: 1px solid rgba(0,153,250,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #0099fa;
  font-size: 13px;
  animation: dfxArrowBounce 1.8s ease-in-out infinite;
}
@keyframes dfxArrowBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

/* Responsive */
@media (max-width: 991px) {
  .dfx-hw-row,
  .dfx-hw-row--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 30px;
  }
  .dfx-hw-visual { height: 200px; }
  .dfx-hw-visual__ring--1,
  .dfx-hw-visual__ring--2,
  .dfx-hw-visual__ring--3,
  .dfx-hw-visual__ring--4 { width: 170px; height: 170px; }
  .dfx-hw-visual__circle { width: 80px; height: 80px; font-size: 28px; }
  .dfx-hw-content h3 { font-size: 22px; }
  .dfx-hw-content p { max-width: 100%; }
}
@media (max-width: 600px) {
  .dfx-hw-header h2 { font-size: 26px; }
  .dfx-hw-visual { height: 160px; }
  .dfx-hw-visual__ring--1,
  .dfx-hw-visual__ring--2,
  .dfx-hw-visual__ring--3,
  .dfx-hw-visual__ring--4 { width: 130px; height: 130px; }
  .dfx-hw-visual__circle { width: 64px; height: 64px; font-size: 22px; }
}


/* ============================================================
   INDUSTRY DATA SECTION — Left image + Right points
   ============================================================ */
.dfx-id-section {
  padding: 80px 0;
  background: #fff;
}
.dfx-id-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.dfx-id-left { position: relative; }
.dfx-id-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.dfx-id-blob {
  position: absolute;
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, rgba(0,153,250,0.12), rgba(0,35,75,0.07));
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: dfx-blob-morph 8s ease-in-out infinite;
  z-index: 0;
}
@keyframes dfx-blob-morph {
  0%   { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  33%  { border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%; transform: translate(-50%, -50%) rotate(5deg) scale(1.05); }
  66%  { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; transform: translate(-50%, -50%) rotate(-5deg) scale(0.97); }
  100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; transform: translate(-50%, -50%) rotate(0deg) scale(1); }
}

/* Main image — tilt + float animation */
.dfx-id-img-main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,35,75,0.18));
  animation: dfx-img-tilt-float 5s ease-in-out infinite;
  transform-origin: center bottom;
}
@keyframes dfx-img-tilt-float {
  0%   { transform: translateY(0px) rotate(-1deg); }
  25%  { transform: translateY(-12px) rotate(1deg); }
  50%  { transform: translateY(-18px) rotate(0deg); }
  75%  { transform: translateY(-8px) rotate(-1.5deg); }
  100% { transform: translateY(0px) rotate(-1deg); }
}

/* Floating card — swing animation */
.dfx-id-img-card {
  position: absolute;
  bottom: -20px;
  right: -10px;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0,35,75,0.15);
  border: 1px solid rgba(0,153,250,0.12);
  animation: dfx-card-swing 6s ease-in-out infinite;
}
@keyframes dfx-card-swing {
  0%   { transform: translateY(0px) rotate(0deg); }
  30%  { transform: translateY(-8px) rotate(1.5deg); }
  60%  { transform: translateY(-4px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
.dfx-id-img-float {
  width: 130px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Stat badge pill — pulse glow */
.dfx-id-badge-pill {
  position: absolute;
  top: 10px;
  left: -10px;
  z-index: 3;
  background: linear-gradient(135deg, #0099fa, #00234b);
  color: #fff;
  border-radius: 50px;
  padding: 8px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0,35,75,0.25);
  animation: dfx-badge-pulse 3s ease-in-out infinite;
}
@keyframes dfx-badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0,35,75,0.25); }
  50%       { transform: scale(1.06); box-shadow: 0 12px 32px rgba(0,153,250,0.4); }
}
.dfx-id-pill-num {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}
.dfx-id-pill-lbl {
  font-size: 10px;
  opacity: 0.85;
  text-align: center;
  line-height: 1.3;
  margin-top: 2px;
}

/* Dot grid — drift animation */
.dfx-id-dots {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(0,153,250,0.3) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: 0;
  animation: dfx-dots-drift 10s linear infinite;
}
@keyframes dfx-dots-drift {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(6px, -6px); }
  100% { transform: translate(0, 0); }
}

/* RIGHT */
.dfx-id-right h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  margin: 10px 0 8px;
  color: #0e314c;
}
.dfx-id-subtitle {
  color: #6084a4;
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.dfx-id-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dfx-id-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f7fafd;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(0,153,250,0.08);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.dfx-id-point:hover {
  transform: translateX(6px);
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,35,75,0.09);
}
.dfx-id-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,153,250,0.12), rgba(0,35,75,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0099fa;
  flex-shrink: 0;
  transition: 0.3s;
}
.dfx-id-point:hover .dfx-id-point-icon {
  background: linear-gradient(135deg, #0099fa, #00234b);
  color: #fff;
}
.dfx-id-point-body { flex: 1; }
.dfx-id-point-num {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #0099fa, #00234b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}
.dfx-id-point-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0e314c;
  margin: 0 0 3px;
}
.dfx-id-point-body p {
  font-size: 12.5px;
  color: #6084a4;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .dfx-id-grid { grid-template-columns: 1fr; gap: 40px; }
  .dfx-id-img-wrap { max-width: 360px; }
  .dfx-id-right h2 { font-size: 26px; }
}
@media (max-width: 600px) {
  .dfx-id-section { padding: 50px 0; }
  .dfx-id-img-card { display: none; }
  .dfx-id-badge-pill { left: 0; }
}

/* ============================================================
   FAQ SECTION — Premium card accordion with smooth animation
   ============================================================ */
.dfx-faq-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f7fafd 0%, #eef4fb 100%);
  position: relative;
  overflow: hidden;
}
.dfx-faq-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,153,250,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.dfx-faq-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,35,75,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.dfx-faq-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.dfx-faq-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #3C4856;
  margin: 12px 0 14px;
  line-height: 1.25;
}
.dfx-faq-header p {
  color: #6084a4;
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 1-column grid */
.dfx-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Card */
.dfx-faq-card {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid rgba(0,153,250,0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  position: relative;
}
/* Left accent bar — hidden by default */
.dfx-faq-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #0099fa, #00234b);
  border-radius: 20px 0 0 20px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.dfx-faq-card:hover {
  box-shadow: 0 8px 32px rgba(0,35,75,0.09);
  border-color: rgba(0,153,250,0.2);
  transform: translateY(-2px);
}
.dfx-faq-card.dfx-faq-open {
  border-color: rgba(0,153,250,0.3);
  box-shadow: 0 12px 40px rgba(0,35,75,0.12);
  transform: translateY(-3px);
}
.dfx-faq-card.dfx-faq-open::before {
  transform: scaleY(1);
}

/* Question button */
.dfx-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.dfx-faq-q:hover {
  background: rgba(0,153,250,0.02);
}
.dfx-faq-q span {
  font-size: 15px;
  font-weight: 700;
  color: #0e314c;
  line-height: 1.45;
  flex: 1;
  transition: color 0.25s;
}
.dfx-faq-card.dfx-faq-open .dfx-faq-q span {
  color: #0099fa;
}

/* Icon circle */
.dfx-faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,153,250,0.1), rgba(0,35,75,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
  color: #0099fa;
  font-size: 13px;
}
.dfx-faq-card:hover .dfx-faq-icon {
  box-shadow: 0 4px 12px rgba(0,153,250,0.2);
}
.dfx-faq-card.dfx-faq-open .dfx-faq-icon {
  background: linear-gradient(135deg, #0099fa, #00234b);
  color: #fff;
  transform: rotate(45deg);
  box-shadow: 0 6px 18px rgba(0,153,250,0.35);
}

/* Divider */
.dfx-faq-card.dfx-faq-open .dfx-faq-q {
  border-bottom: 1px solid rgba(0,153,250,0.12);
}

/* Answer panel — smooth height animation */
.dfx-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease,
              opacity 0.35s ease;
  padding: 0 24px;
  opacity: 0;
}
.dfx-faq-a p {
  color: #6084a4;
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 20px;
}
.dfx-faq-card.dfx-faq-open .dfx-faq-a {
  max-height: 400px;
  padding: 16px 24px 20px;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .dfx-faq-section { padding: 60px 0; }
  .dfx-faq-header h2 { font-size: 26px; }
  .dfx-faq-q { padding: 18px 18px; }
  .dfx-faq-q span { font-size: 14px; }
  .dfx-faq-card.dfx-faq-open .dfx-faq-a { padding: 12px 18px 16px; }
}


/* ============================================================
   WHY SERVICE — Orb spinning rings + glow center
   ============================================================ */
.dfx-why-visual__orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.dfx-orb-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.dfx-orb-ring-1 {
  width: 160px; height: 160px;
  border: 2px dashed rgba(0,153,250,0.3);
  animation: dfx-orb-spin-1 12s linear infinite;
}
.dfx-orb-ring-2 {
  width: 220px; height: 220px;
  border: 2px solid rgba(0,35,75,0.15);
  animation: dfx-orb-spin-2 18s linear infinite;
}
.dfx-orb-ring-3 {
  width: 280px; height: 280px;
  border: 2px dotted rgba(0,153,250,0.1);
  animation: dfx-orb-spin-1 25s linear infinite reverse;
}
@keyframes dfx-orb-spin-1 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes dfx-orb-spin-2 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}
.dfx-orb-center {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0099fa, #00234b);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 36px;
  box-shadow: 0 0 0 12px rgba(0,153,250,0.1), 0 20px 50px rgba(0,35,75,0.3);
  animation: dfx-orb-glow 3s ease-in-out infinite;
  position: relative;
  z-index: 3;
}
@keyframes dfx-orb-glow {
  0%, 100% { box-shadow: 0 0 0 12px rgba(0,153,250,0.1), 0 20px 50px rgba(0,35,75,0.3); }
  50%       { box-shadow: 0 0 0 22px rgba(0,153,250,0.18), 0 24px 60px rgba(0,35,75,0.4); }
}


/* ============================================================
   TECH STACK AUTO-SCROLL SECTION
   ============================================================ */
.dfx-ts-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f7fafd 0%, #eef4fb 100%);
  overflow: hidden;
  position: relative;
}
.dfx-ts-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,153,250,0.2), transparent);
}
.dfx-ts-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,153,250,0.2), transparent);
}

/* Header */
.dfx-ts-header {
  text-align: center;
  margin-bottom: 48px;
}
.dfx-ts-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #3C4856;
  margin: 12px 0 14px;
  line-height: 1.25;
}
.dfx-ts-header p {
  color: #6084a4;
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Track wrapper — fade edges */
.dfx-ts-track-wrap {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}
.dfx-ts-track-wrap::before,
.dfx-ts-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.dfx-ts-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #eef4fb, transparent);
}
.dfx-ts-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #eef4fb, transparent);
}

/* Scrolling track */
.dfx-ts-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.dfx-ts-track--left {
  animation: dfx-ts-scroll-left 30s linear infinite;
}
.dfx-ts-track--right {
  animation: dfx-ts-scroll-right 35s linear infinite;
}
.dfx-ts-track:hover {
  animation-play-state: paused;
}
@keyframes dfx-ts-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes dfx-ts-scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Individual chip */
.dfx-ts-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(0,153,250,0.1);
  border-radius: 60px;
  padding: 14px 26px;
  box-shadow: 0 4px 18px rgba(0,35,75,0.07);
  white-space: nowrap;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}
.dfx-ts-chip:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,35,75,0.13);
  border-color: rgba(0,153,250,0.3);
}
.dfx-ts-chip__icon {
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.dfx-ts-chip:hover .dfx-ts-chip__icon {
  transform: rotate(-8deg) scale(1.15);
}
.dfx-ts-chip__name {
  font-size: 15px;
  font-weight: 700;
  color: #3C4856;
  letter-spacing: 0.2px;
}

/* Responsive */
@media (max-width: 767px) {
  .dfx-ts-section { padding: 50px 0 40px; }
  .dfx-ts-header h2 { font-size: 26px; }
  .dfx-ts-chip { padding: 10px 18px; gap: 8px; }
  .dfx-ts-chip__icon { font-size: 22px; }
  .dfx-ts-chip__name { font-size: 13px; }
  .dfx-ts-track-wrap::before,
  .dfx-ts-track-wrap::after { width: 60px; }
}


/* ============================================================
   BUDGET CALCULATOR SECTION
   ============================================================ */
.dfx-calc-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f7fafd 0%, #eef4fb 100%);
  position: relative;
  overflow: hidden;
}
.dfx-calc-section::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,153,250,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.dfx-calc-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,35,75,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.dfx-calc-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.dfx-calc-header .dfx-section-badge {
  background: linear-gradient(135deg, rgba(0,153,250,0.12), rgba(0,35,75,0.08));
  border-color: rgba(0,153,250,0.25);
  color: #0099fa;
}
.dfx-calc-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #3C4856;
  margin: 16px 0 16px;
  line-height: 1.2;
}
.dfx-calc-header h2 .dfx-gradient-text {
  background: linear-gradient(309deg, rgba(0,153,250,1) 6%, rgba(49,76,144,1) 55%, rgba(0,35,75,1) 98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dfx-calc-header p {
  color: #6084a4;
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Cards grid */
.dfx-calc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Individual card */
.dfx-calc-card {
  background: #fff;
  border: 1.5px solid rgba(0,153,250,0.12);
  border-radius: 28px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,35,75,0.08);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.dfx-calc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,35,75,0.14);
  border-color: rgba(0,153,250,0.3);
}

/* Animated glow blob */
.dfx-calc-card__glow {
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  top: -80px; right: -80px;
  pointer-events: none;
  animation: dfx-calc-glow 6s ease-in-out infinite;
}
.dfx-calc-card--web .dfx-calc-card__glow {
  background: radial-gradient(circle, rgba(0,153,250,0.25) 0%, transparent 70%);
}
.dfx-calc-card--amc .dfx-calc-card__glow {
  background: radial-gradient(circle, rgba(99,0,255,0.2) 0%, transparent 70%);
}
@keyframes dfx-calc-glow {
  0%, 100% { transform: scale(1) translate(0,0); opacity: 0.8; }
  50%       { transform: scale(1.3) translate(-20px, 20px); opacity: 1; }
}

/* Badge */
.dfx-calc-card__badge {
  position: absolute;
  top: 24px; right: 24px;
  background: linear-gradient(135deg, #f5a623, #e8830a);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(245,166,35,0.4);
  animation: dfx-badge-pulse 2.5s ease-in-out infinite;
}

/* Icon */
.dfx-calc-card__icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,153,250,0.1), rgba(0,35,75,0.06));
  border: 1.5px solid rgba(0,153,250,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: #0099fa;
  margin-bottom: 24px;
  transition: transform 0.3s, background 0.3s;
}
.dfx-calc-card:hover .dfx-calc-card__icon {
  transform: rotate(-8deg) scale(1.1);
  background: linear-gradient(135deg, #0099fa, #00234b);
  color: #fff;
}

/* Heading */
.dfx-calc-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #3C4856;
  line-height: 1.3;
  margin-bottom: 14px;
}
.dfx-calc-card h3 span {
  color: #6084a4;
  font-weight: 600;
}

/* Description */
.dfx-calc-card > p {
  color: #6084a4;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Feature list */
.dfx-calc-card__features {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.dfx-calc-card__features li {
  display: flex; align-items: center; gap: 10px;
  color: #3C4856;
  font-size: 14px; font-weight: 500;
}
.dfx-calc-card__features li i {
  color: #0099fa;
  font-size: 14px;
  flex-shrink: 0;
}

/* CTA Button */
.dfx-calc-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #0099fa, #00234b);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,153,250,0.25);
  border: none;
}
.dfx-calc-card__btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,153,250,0.35);
  color: #fff;
}
.dfx-calc-card__btn--alt {
  background: #f7fafd;
  color: #0057a8;
  border: 1.5px solid rgba(0,153,250,0.25);
  box-shadow: none;
}
.dfx-calc-card__btn--alt:hover {
  background: linear-gradient(135deg, #0099fa, #00234b);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(0,153,250,0.3);
}
.dfx-calc-card__btn i {
  transition: transform 0.3s;
}
.dfx-calc-card__btn:hover i {
  transform: translateX(4px);
}

/* Footer note */
.dfx-calc-card__footer {
  color: #6084a4;
  font-size: 12px;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.dfx-calc-card__footer i { color: #0099fa; }

/* Responsive */
@media (max-width: 767px) {
  .dfx-calc-cards { grid-template-columns: 1fr; gap: 20px; }
  .dfx-calc-header h2 { font-size: 28px; }
  .dfx-calc-card { padding: 32px 24px; }
  .dfx-calc-card h3 { font-size: 20px; }
}
