.elementor-14777 .elementor-element.elementor-element-b53d137{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-3df6c49 *//* ===== BASE ===== */
.case-wrap {
  max-width: 1000px;
  margin: auto;
  font-family: "DM Sans", sans-serif;
  color: #111;
}

/* ===== TITLE ===== */
.case-title {
  font-size: 40px;
  font-weight: 700;
}

.case-subtitle {
  color: #F27841;
  margin-top: 8px;
}

.case-meta {
  color: #666;
  font-size: 14px;
}

/* ===== SECTION ===== */
.case-section {
  margin-bottom: 60px;

  /* Scroll animation */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;

  /* Modern browsers */
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

/* Fallback */
@supports not (animation-timeline: view()) {
  .case-section {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HEADINGS ===== */
.case-heading {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.case-line {
  width: 40px;
  height: 3px;
  background: #F27841;
  margin-bottom: 15px;
}

/* ===== TIMELINE ===== */
.case-timeline {
  border-left: 2px solid #eee;
  padding-left: 20px;
}

.case-item {
  margin-bottom: 20px;
  transition: all 0.25s ease;
}

.case-item:hover {
  transform: translateY(-4px);
}

/* ===== TABLE (FINAL FIXED) ===== */
.case-table {
  width: 100%;
  border-collapse: collapse !important;
  border: 1px solid #d0d0d0 !important;
  background: #fff;
  font-size: 15px;
}

/* HEADER */
.case-table thead th {
  padding: 12px;
  text-align: left;
  font-weight: 600;
  border: 1px solid #d0d0d0 !important;
  border-bottom: 2px solid #F27841 !important;
  background: #fafafa;
}

/* CELLS */
.case-table td {
  padding: 12px;
  border: 1px solid #d0d0d0 !important;
  vertical-align: top;
}

/* HOVER */
.case-table tbody tr {
  transition: background 0.2s ease;
}

.case-table tbody tr:hover {
  background: #fafafa;
}

/* HIGHLIGHT */
.case-highlight {
  color: #F27841;
  font-weight: 600;
}

/* ===== DARK BLOCK ===== */
.case-dark {
  background: #0b0909;
  padding: 40px 50px;
  border-radius: 16px;
  color: #fff;
  transition: all 0.3s ease;
}

.case-dark:hover {
  box-shadow: 0 10px 40px rgba(242, 120, 65, 0.15);
}

/* TITLE GLOW */
.case-dark h2 {
  color: #ffffffcc;
  transition: all 0.3s ease;
}

.case-dark:hover h2 {
  color: #fff;
  text-shadow: 0 0 12px rgba(242,120,65,0.3);
}

/* ORANGE BAR */
.case-dark-bar {
  width: 4px;
  height: 28px;
  background: #F27841;
  margin-right: 12px;
  transition: all 0.4s ease;
}

.case-dark:hover .case-dark-bar {
  height: 36px;
  background: linear-gradient(180deg, #F27841, #ff9a66);
}

/* ===== GRID ===== */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.case-point {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  transition: all 0.25s ease;
}

.case-point span {
  color: #F27841;
  transition: transform 0.2s ease;
}

.case-point:hover {
  transform: translateY(-3px);
}

.case-point:hover span {
  transform: scale(1.2);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */