.project-meta-box {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.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: 38px 16px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.meta-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

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

.meta-value {
  font-size: 14px;
  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: 15px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.75;
}

.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: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 5px;
}

.user-type-desc {
  font-size: 13.5px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.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;
}
@media (max-width: 1299px) {
  .project-meta-box {
    gap: 36px;
  }
  .meta-item {
    padding: 46px 16px;
  }
}
/* @media (max-width: 1024px) {
  .meta-item {
    padding: 46px 16px;
  }
} */
/* ── RESPONSIVE ── */
@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;
}

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

.objectives-text {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

.results-heading {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.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;
}

/* ===== RESPONSIVE ===== */
@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 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: 860px;
}

/* Intro bold paragraph */
.op-impact-intro {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.65;
  margin-bottom: 28px;
}

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

/* List */
.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;
}

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

/* Item text + underline wrapper */
.op-item-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 14px;
}

.op-item-text {
  font-size: 15.5px;
  color: #333;
  line-height: 1.65;
  margin-bottom: 10px;
}

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

/* No underline on last item */
.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;
  }
}

/* ===== LEFT CONTENT BOX ===== */
.feature-content-box {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff9f0;
}

/* ===== TITLE BAR ===== */
.feature-title-wrap {
  background-color: #f89100;
  padding: 14px 20px;
  border-radius: 8px 8px 0 0;
}

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

/* ===== CONTENT BLOCKS ===== */
.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: 15px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

/* ===== KEY FUNCTIONS LIST ===== */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 15px;
  color: #444;
  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: 1px;
  font-size: 10px;
  color: #111111;
}

/* ===== RIGHT IMAGE ===== */
.feature-image-wrap {
  padding-left: 20px;
}

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

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

.platform-points {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.platform-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.platform-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #111;
  font-weight: 900;
}

.platform-points li strong {
  color: #1a1a1a;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

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

.platform-intro-text {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.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-heading-area {
  margin-bottom: 32px;
}

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

.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;
}

/* LEFT TABS */
.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: 15px;
  font-weight: 600;
  color: #444;
  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;
}

/* DOT - hide arrow by default */
.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;
}

/* Active tab — show arrow icon, hide plain dot bg */
.tech-tab-item.active .tech-tab-dot {
  background: transparent;
  border: none;
}

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

/* RIGHT CONTENT */
.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: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0px;
}

.tech-item-desc {
  font-size: 16px;
  color: #444;
  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-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;
}

.solutions-intro-text {
  font-size: 15px;
  color: #444;
  margin: 0 auto;
  line-height: 1.7;
  text-align: left;
}

/* CARD */
.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: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.solutions-card-text {
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  margin: 0;
}

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

  .solutions-card {
    padding: 24px 18px;
  }
}

.mobileServiceTitle {
  line-height: 20px !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
  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 {
  background: #fff9f0;
}

/* HEADING */
.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: 14px;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

/* CARD */
.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);
}

/* IMAGE */
.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));
}

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

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

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

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

/* META */
.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: 12px;
  color: #888;
}

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

/* LINK */
.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;
  /* fully rounded */

  text-decoration: none;
  transition: all 0.3s ease;
}

.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;
  /* fully rounded */

  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  background-color: #f89100;
  color: #fff;
  gap: 10px;
  /* arrow moves slightly */
}

/* Hover effect */
.explore-card-link:hover {
  background-color: #f89100;
  color: #fff;
  gap: 10px;
  /* arrow moves slightly */
}

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

@media (max-width: 768px) {
  .explore-intro-text {
    font-size: 13px;
  }

  .explore-card-title {
    font-size: 15px;
  }
}

.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: 14px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

.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: 14px;
  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: 13px;
  color: #444;
  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;
  }
}
/* ── 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: 38px 16px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
} */

.meta-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

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

.meta-value {
  font-size: 14px;
  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: 15px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.75;
}

.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: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 5px;
}

.user-type-desc {
  font-size: 13.5px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.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;
}

/* ── RESPONSIVE ── */
@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;
}

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

.objectives-text {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

.results-heading {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.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;
}

/* ===== RESPONSIVE ===== */
@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 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: 860px;
}

/* Intro bold paragraph */
.op-impact-intro {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.65;
  margin-bottom: 28px;
}

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

/* List */
.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;
}

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

/* Item text + underline wrapper */
.op-item-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 14px;
}

.op-item-text {
  font-size: 15.5px;
  color: #333;
  line-height: 1.65;
  margin-bottom: 10px;
}

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

/* No underline on last item */
.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;
  }
}

/* ===== LEFT CONTENT BOX ===== */
.feature-content-box {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff9f0;
}

/* ===== TITLE BAR ===== */
.feature-title-wrap {
  background-color: #f89100;
  padding: 14px 20px;
  border-radius: 8px 8px 0 0;
}

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

/* ===== CONTENT BLOCKS ===== */
.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: 15px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

/* ===== KEY FUNCTIONS LIST ===== */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 15px;
  color: #444;
  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: 1px;
  font-size: 10px;
  color: #111111;
}

/* ===== RIGHT IMAGE ===== */
.feature-image-wrap {
  padding-left: 20px;
}

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

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

.platform-points {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.platform-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.platform-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #111;
  font-weight: 900;
}

.platform-points li strong {
  color: #1a1a1a;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

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

.platform-intro-text {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.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-heading-area {
  margin-bottom: 32px;
}

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

.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;
}

/* LEFT TABS */
.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: 15px;
  font-weight: 600;
  color: #444;
  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;
}

/* DOT - hide arrow by default */
.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;
}

/* Active tab — show arrow icon, hide plain dot bg */
.tech-tab-item.active .tech-tab-dot {
  background: transparent;
  border: none;
}

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

/* RIGHT CONTENT */
.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: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0px;
}

.tech-item-desc {
  font-size: 16px;
  color: #444;
  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-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;
}

.solutions-intro-text {
  font-size: 15px;
  color: #444;
  margin: 0 auto;
  line-height: 1.7;
  text-align: left;
}

/* CARD */
.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: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.solutions-card-text {
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  margin: 0;
}

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

  .solutions-card {
    padding: 24px 18px;
  }
}

.mobileServiceTitle {
  line-height: 20px !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
  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 {
  background: #fff9f0;
}

/* HEADING */
.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: 14px;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

/* CARD */
.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);
}

/* IMAGE */
.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));
}

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

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

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

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

/* META */
.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: 12px;
  color: #888;
}

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

/* LINK */
.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;
  /* fully rounded */

  text-decoration: none;
  transition: all 0.3s ease;
}

.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;
  /* fully rounded */

  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  background-color: #f89100;
  color: #fff;
  gap: 10px;
  /* arrow moves slightly */
}

/* Hover effect */
.explore-card-link:hover {
  background-color: #f89100;
  color: #fff;
  gap: 10px;
  /* arrow moves slightly */
}

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

@media (max-width: 768px) {
  .explore-intro-text {
    font-size: 13px;
  }

  .explore-card-title {
    font-size: 15px;
  }
}

.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: 14px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

.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: 14px;
  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: 13px;
  color: #444;
  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;
  }
}
