/* ── BREADCRUMB META SIDEBAR ── */
.project-meta-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.new-title {
  font-size: 34px !important;
  line-height: 1.1em;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f891000f;
  border-radius: 10px;
  padding: 35px 16px;
}

.meta-icon {
  width: 48px;
  height: 48px;
  background-color: #f89100;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.meta-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.meta-icon i {
  font-size: 24px;
}

.meta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-label {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-value {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

/* ── BADGE ── */
.badge-label {
  display: inline-block;
  background: var(--primary-color);
  color: #fefcf8;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── CASE STUDY BODY ── */
.cs-lead {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.7;
}

.cs-text {
  font-size: 18px;
  color: rgb(62, 62, 62);
  margin-bottom: 18px;
  line-height: 28px;
}

.cs-user-types {
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 28px;
}

.user-type-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s ease;
}

.user-type-item:last-child {
  border-bottom: none;
}

.user-type-item:hover {
  background: #f891000f;
}

.user-type-icon {
  width: 38px;
  height: 38px;
  background: #fefcf8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-type-icon i {
  color: var(--primary-color);
  font-size: 15px;
}

.user-type-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 5px;
}

.user-type-desc {
  font-size: 16px;
  color: rgb(62, 62, 62);
  line-height: 1.6;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1299px) {
  .project-meta-box {
    gap: 22px;
  }
  .meta-item {
    padding: 46px 16px;
  }
}

@media (max-width: 991px) {
  .project-meta-box {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .meta-item {
    flex: 1 1 calc(50% - 6px);
  }
}

@media (max-width: 576px) {
  .meta-item {
    flex: 1 1 100%;
  }
}

/* ===== OBJECTIVES LEFT ===== */
.objectives-left {
  position: relative;
  padding-top: 10px;
}

.objectives-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.08;
}

.objectives-icon svg {
  width: 120px;
  height: 120px;
  fill: none;
  stroke: #1a3c6e;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.objectives-title {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  text-align: left;
}

/* ===== OBJECTIVES RIGHT ===== */
.objectives-right {
  padding-left: 10px;
}

.objectives-text {
  font-size: 15px;
  color: rgb(62, 62, 62);
  line-height: 1.8;
  margin: 0;
}

/* ===== RESULTS ===== */
.results-heading {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 31px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #2f2c2c8a;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f89100;
  background-size: 16px 16px;
  align-items: stretch;
}

.result-item {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.result-inner {
  border-left: 2px solid #ffffff;
  padding-left: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.result-item:first-child .result-inner {
  border-left: none;
}

.result-number {
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}

.result-label {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.result-desc {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .objectives-right {
    padding-left: 0;
    margin-top: 20px;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .result-item:nth-child(2) {
    border-right: none;
  }

  .result-item:nth-child(1),
  .result-item:nth-child(2) {
    border-bottom: 1px solid #ddd;
  }
}

@media (max-width: 480px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-item {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .result-item:last-child {
    border-bottom: none;
  }
}

/* ===== OBJECTIVES / OP IMPACT SECTION ===== */
.op-impact-box {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px 28px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
  max-width: 1000px;
}

.op-impact-intro {
  font-size: 26px;
  color: #1a1a1a;
  line-height: 1.65;
  margin-bottom: 28px;
}

.op-impact-intro strong {
  font-weight: 700;
  color: #f89100;
}

.op-impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.op-impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 6px;
}

.op-arrow {
  color: #f89100;
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

.op-item-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 14px;
}

.op-item-text {
  font-size: 18px;
  color: rgb(62, 62, 62);
  line-height: 1.65;
  margin-bottom: 10px;
}

.op-underline {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #f89100 0%, #fdc830 60%, transparent 100%);
  border-radius: 2px;
  opacity: 0.55;
}

.op-impact-list li:last-child .op-item-wrap {
  padding-bottom: 0;
}

.op-impact-list li:last-child .op-underline {
  display: none;
}

@media (max-width: 768px) {
  .op-impact-box {
    padding: 26px 20px 20px;
  }

  .op-item-text {
    font-size: 14.5px;
  }
}

/* ===== FEATURE CONTENT BOX ===== */
.feature-content-box {
  border-radius: 10px;
  overflow: hidden;
  max-width: 860px;
}

.feature-title-wrap {
  padding: 14px 20px;
  border-radius: 8px 8px 0 0;
}

.feature-title {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.feature-block {
  padding: 16px 20px;
}

.feature-block:last-child {
  border-bottom: none;
}

.feature-block-heading {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  font-style: italic;
  margin-bottom: 8px;
}

.feature-block-text {
  font-size: 18px;
  color: rgb(62, 62, 62);
  line-height: 1.7;
  margin: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 18px;
  color: rgb(62, 62, 62);
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 10px;
  color: #111111;
}

.feature-image-wrap {
  padding-left: 20px;
}

.feature-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 767px) {
  .feature-image-wrap {
    padding-left: 0;
    margin-top: 30px;
  }
}

/* ===== PLATFORM ===== */
.platform-main-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 31px;
}

.platform-intro-text {
  font-size: 18px;
  color: rgb(62, 62, 62);
  margin-bottom: 20px;
  line-height: 28px;
}

.platform-sub-heading {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}

/* TOP LEVEL - bullet */
.platform-info-block .platform-points > li {
  position: relative !important;
  padding-left: 20px !important;
  margin-bottom: 16px !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #555 !important;
}

.platform-info-block .platform-points > li::before {
  content: "•" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  color: #111 !important;
  font-weight: 900 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.platform-info-block .platform-points > li > strong {
  color: #1a1a1a !important;
  font-weight: 700 !important;
  display: block !important;
}

/* NESTED .point li - ALSO show bullet */
.platform-info-block .point {
  list-style: none !important;
  padding-left: 16px !important;
  margin: 4px 0 0 0 !important;
}

.platform-info-block .point li {
  position: relative !important;
  padding-left: 16px !important;
  font-size: 15px !important;
  color: #555 !important;
}

.platform-info-block .point li::before {
  content: "–" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #1a1a1a !important;
  font-weight: 700 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* DEEP nested ul li - small bullet */
.platform-info-block .point ul {
  list-style: none !important;
  padding-left: 16px !important;
  margin-top: 4px !important;
}

.platform-info-block .point ul li {
  position: relative !important;
  padding-left: 16px !important;
}

.platform-info-block .point ul li::before {
  content: "•" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #777 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.platform-img-holder img {
  width: 100%;
  border-radius: 12px;
}

.platform-details-wrap {
  padding-left: 20px;
}

@media (max-width: 768px) {
  .platform-details-wrap {
    padding-left: 0;
    margin-top: 30px;
  }
}

/* ===== TECH TABS ===== */
.tech-heading-area {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 28px;
  color: rgb(68, 68, 68);
}

.tech-main-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 31px;
}

.tech-main-title span {
  color: #f89100;
}

.tech-tab-wrapper {
  background: #fff;
  border-radius: 16px;
  display: flex;
  gap: 0;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  min-height: 340px;
  padding: 30px;
}

.tech-tab-left {
  width: 426px;
  min-width: 240px;
  padding: 8px 16px;
}

.tech-tab-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-tab-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: rgb(62, 62, 62);
  background: #f5f5f5;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
}

.tech-tab-item:hover {
  background: #fff9f0;
  color: #f89100;
}

.tech-tab-item.active {
  background: #f89100;
  color: #fff;
  border-color: #f89100;
}

.tech-tab-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ddd;
  border: 2px solid #ccc;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tech-tab-dot .dot-arrow {
  width: 24px;
  height: 24px;
  display: none;
}

.tech-tab-item.active .tech-tab-dot {
  background: transparent;
  border: none;
}

.tech-tab-item.active .tech-tab-dot .dot-arrow {
  display: block;
}

.tech-tab-right {
  flex: 1;
  padding: 40px;
  background-color: #fff9f0;
  border-radius: 32px;
}

.tech-tab-panel {
  display: none;
  flex-direction: column;
  gap: 20px;
  animation: fadeInTab 0.3s ease;
}

.tech-tab-panel.active {
  display: flex;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.tech-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.tech-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tech-item-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0px;
}

.tech-item-desc {
  font-size: 18px;
  color: rgb(62, 62, 62);
  margin: 0;
}

@media (max-width: 768px) {
  .tech-tab-wrapper {
    flex-direction: column;
  }

  .tech-tab-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
}

/* ===== SOLUTIONS ===== */
.solutions-section {
  background: #fff;
}

.solutions-heading-area {
  margin-bottom: 40px;
}

.solutions-main-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  display: flex;
  line-height: 31px;
}

.solutions-intro-text {
  font-size: 18px;
  color: rgb(62, 62, 62);
  margin: 0 auto;
  line-height: 28px;
  text-align: left;
}

.solutions-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 32px 26px;
  height: 100%;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.solutions-card:hover {
  box-shadow: 0 8px 32px rgba(123, 108, 246, 0.12);
  transform: translateY(-4px);
}

.solutions-card-icon {
  margin-bottom: 20px;
}

.solutions-card-icon svg {
  display: block;
}

.solutions-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.solutions-card-text {
  font-size: 16px;
  color: rgb(62, 62, 62);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .solutions-card {
    padding: 24px 18px;
  }
}

/* ===== MISC BUTTONS ===== */
.budmobileServiceTitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin: 0 0 21px;
  color: #19082d;
}

a.submit-btn.cta-modal-btn.submit-reds.cat {
  background-color: #fff !important;
  color: black !important;
  font-weight: 600 !important;
  position: relative;
  display: inline-block;
  border-radius: 15px 15px 15px 15px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  color: #fff;
  padding: 14px 50px 14px 38px;
  outline: none;
  transition: all 0.5s ease;
  background: 0 0;
  border: none;
}

a.submit-btn.cta-modal-btn.submit-reds.cat:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.cta-btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 18px;
  background-color: #ffffff;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-link:hover {
  background-color: #000;
  color: #ffffff;
}

.cta-btn-link .arrow {
  font-size: 20px;
}

/* ===== EXPLORE SECTION ===== */
.explore-section {
  background: #fff9f0;
}

.explore-heading-wrap {
  margin-bottom: 40px;
}

.explore-section-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.explore-tag {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
}

.explore-tag::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.explore-intro-text {
  font-size: 18px;
  color: rgb(62, 62, 62);
  line-height: 28px;
  margin: 0;
}

.explore-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.explore-card:hover {
  box-shadow: 0 10px 36px rgba(74, 140, 42, 0.15);
  transform: translateY(-4px);
}

.explore-card-img-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.explore-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.explore-card:hover .explore-card-img {
  transform: scale(1.05);
}

.explore-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.25));
}

.explore-card-body {
  padding: 22px 20px 24px;
}

.explore-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.explore-tag-pill {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #f89100;
  background: #fff9f0;
  border-radius: 50px;
  padding: 4px 12px;
}

.explore-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 14px;
}

.explore-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.explore-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  color: #888;
}

.explore-meta-item svg {
  flex-shrink: 0;
  color: #aaa;
}

.explore-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background-color: #f89100;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.explore-card-link:hover {
  background-color: #f89100;
  color: #fff;
  gap: 10px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px !important;
  font-weight: 400;
  color: #fff;
  background-color: #f89100;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  background-color: #f89100;
  color: #fff;
  gap: 10px;
}

@media (max-width: 991px) {
  .explore-card-img-wrap {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .explore-card-title {
    font-size: 15px;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 31px;
}
.testi-section {
  background: #fff;
}

.testi-heading-wrap {
  margin-bottom: 40px;
}

.testi-main-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.testi-sub-text {
  font-size: 18px;
  color: rgb(62, 62, 62);
  line-height: 1.7;
  margin: 0;
  text-align: center;
}
.project-obj-text {
  font-size: 18px;
  color: rgb(62, 62, 62);
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

.testi-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 24px 22px;
  height: 100%;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.testi-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.testi-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.testi-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #f89100;
}

.testi-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-author-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.testi-author-role {
  font-size: 12px;
  color: #888;
}

.testi-author-country {
  font-size: 11px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testi-quote-wrap {
  margin-bottom: 14px;
}

.testi-quote-icon {
  margin-bottom: 8px;
  opacity: 0.85;
}

.testi-quote-text {
  font-size: 16px;
  color: rgb(62, 62, 62);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.testi-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

@media (max-width: 768px) {
  .testi-main-title {
    font-size: 20px;
  }

  .testi-card {
    padding: 18px 16px;
  }
}

/* ── Reset list ── */
.platform-points2 {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.platform-points2 li strong {
  color: rgb(62, 62, 62) !important;
}

.accordion-title.active {
  color: #fff !important;
}

/* ── Each item as pill ── */
.accordion-items {
  background: #f5f5f5;
  border-radius: 50px;
  padding: 14px 20px;
  margin-bottom: 10px;
  list-style: none;
  border-bottom: none;
  transition: background 0.25s;
  position: relative;
}

/* ── Active item = orange ── */
.accordion-items:has(.accordion-title.active) {
  background: #f89100;
  border-radius: 20px;
}

/* ── Title ── */
.accordion-title {
  cursor: pointer;
  display: block;
  position: relative;
  padding: 0 35px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  transition: color 0.25s;
}

/* ── + icon black ── */
.accordion-title::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  color: rgb(62, 62, 62);
  line-height: 1;
  transition: color 0.25s;
  display: block !important;
}

/* ── Active: show − in white ── */
.accordion-title.active::after {
  content: "−";
  color: #fff;
}
.arch-desc {
  font-size: 18px;
  line-height: 28px;
  color: rgb(68, 68, 68);
  margin-bottom: 0px !important;
}
.arch-intro-text {
  font-size: 18px;
  line-height: 28px;
  color: rgb(68, 68, 68);
}

/* ── Content ── */
.accordion-content {
  display: none;
  font-size: 16px;
  line-height: 1.7;
  padding-top: 10px;
  margin-top: 8px;
  border-top: 1px solid #fff;
  color: #fff;
}

/* ── Remove old bullet ── */
.platform-points li::before {
  display: none !important;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .platform-points2 {
    width: 100%;
  }
}
.cs-feature-section img {
  /* max-width: 1100px; */
}
.how-the-work-block {
  width: 860px;
  background: #fff;
  border-radius: 16px;
  padding: 37px 28px 28px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}
.case-table {
  display: flex;
  justify-content: center;
}
.main-table {
  max-width: 860px;
}
.the-challenge-section {
  display: flex;
  justify-content: center;
}
.the-main-challenge {
  background: #fff9f0;
}
@media only screen and (max-width: 430px) {
  .rs-services.services-style5
    .services-item
    .services-wrap
    .services-content
    .title {
    font-size: 26px !important;
    line-height: 31px !important;
  }
}
@media only screen and (max-width: 430px) {
  .main-title {
    line-height: 31px;
  }
  .tech-tab-right {
    padding: 20px;
  }
}
@media only screen and (max-width: 430px) {
  .budmobileServiceTitle {
    margin-top: 16px !important;
    text-align: left !important;
    font-size: 18px !important;
    font-weight: 500;
    margin-bottom: 30px !important;
  }
}

/* ============================================
   MOBILE FIXES
   ============================================ */

/* FIX 1 — Op-Impact arrow icon alignment on mobile */
@media (max-width: 576px) {
  .op-arrow {
    font-size: 11px;
    margin-top: 4px;
    flex-shrink: 0;
    line-height: 1.8;
  }
  .op-item-text {
    font-size: 15px;
  }
  .op-impact-box {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* FIX 2 — Table horizontal scroll
   Root cause: .case-table { display: flex } blocks
   Bootstrap .table-responsive from enabling overflow-x */
@media (max-width: 767px) {
  .case-table {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
  }
  .case-table > .col-10 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 0 15px !important;
  }
  .case-table .table-responsive {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
  }
  /* min-width forces the table wider than screen = scroll appears */
  .case-table .table-responsive table {
    min-width: 520px !important;
  }
}

/* FIX 3 — Data Security left/right column gap on mobile */
@media (max-width: 767px) {
  .col-lg-6.col-md-6 .platform-img-holder {
    margin-top: 24px;
  }
  .col-lg-6.col-md-6 .platform-details-wrap {
    padding-left: 0;
  }
}

/* FIX 4 — Solutions cards gap when stacked on mobile */
@media (max-width: 767px) {
  .case-card {
    margin-bottom: 20px;
  }
  .solutions-card-icon svg {
    width: 36px;
    height: 36px;
  }
}

/* FIX 5 — Case study images + how-it-works block overflow */
@media (max-width: 576px) {
  .cs-feature-section img {
    width: 100%;
    height: auto;
  }
  .how-the-work-block {
    width: 100% !important;
    padding: 24px 16px;
  }
  .feature-content-box {
    width: 100%;
    max-width: 100%;
  }
}

/* FIX 6 — Testimonial cards gap when stacked on mobile */
@media (max-width: 767px) {
  .review-card {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .rs-faq.faq-style1
    .faq-content
    .accordion
    .card
    .card-header
    .card-link.collapsed {
    line-height: 31px;
  }
  .rs-faq.faq-style1 .faq-content .accordion .card .card-header .card-link {
    line-height: 31px;
  }
}
.point {
  list-style: none;
  padding-left: 10px;
  margin-top: 6px;
}

.point li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 0px;
  font-size: 16px;
  color: #666;
}

/* Different bullet style */
.point li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #111;
  font-weight: 900;
}
.rs-services.services-style5
  .services-item
  .services-wrap
  .services-content
  .title {
  font-size: 23px !important;
  font-weight: 600 !important;
  line-height: 35px;
  margin: 0 0 21px;
  color: #19082d;
  text-transform: uppercase;
}
.case-table table th,
.case-table table td {
    font-size: 18px !important;
}