* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;

}

html {
  width: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
}


body {
  background: #fff;
  color: #111;
}

/* ================= BACK ================= */

.cm-breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 40px;
  /* image madhiri spacing */
  border-bottom: 1px solid #ececec;
}

/* ===== BACK ICON ===== */
.cm-back-btn {
  color: #444;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.25s ease;
}

.cm-back-btn:hover {
  color: #333;
  /* light dark */
}

/* ===== BREADCRUMB ===== */
.cm-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 17px;
  font-weight: 600;
}

/* LINKS (Home, Services) */
.cm-breadcrumb-link {
  color: #444;
  /* image-la irukura grey */
  text-decoration: none;
  transition: color 0.25s ease;
}

.cm-breadcrumb-link:hover {
  color: #333;
  /* light dark on hover */
}

/* SLASH */
.cm-breadcrumb-sep {
  color: #c2c2c2;
  font-size: 15px;
}

/* CURRENT PAGE */
.cm-breadcrumb-active {
  color: #1f6bff;
  /* exact blue tone */
  font-weight: 600;
}


/* ================= HERO SECTION ================= */
.entdash-sec-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #0b9a77, #03665a);
}

/* ================= CONTENT ================= */
.entdash-inner-box {
  max-width: 1200px;
  text-align: center;
  color: #ffffff;
}

/* ===== ICON ===== */
.entdash-top-icon {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  margin: 0 auto 28px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  border: 1.5px solid rgba(180, 255, 230, 0.45);
}

/* ===== HEADINGS ===== */
.entdash-title-main {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.entdash-subtitle-main {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 28px;
  color: #dff7f2;
}

/* ===== TEXT ===== */
.entdash-desc-text {
  font-size: 18px;
  line-height: 1.7;
  color: #e6fffb;
  margin-bottom: 26px;
  width: 900px;
}

.entdash-desc-strong {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

/* ===== BUTTONS ===== */
.entdash-btn-row {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Primary */
.entdash-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #0b9a77;
  background: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
}

.entdash-btn-primary i {
  transition: transform 0.35s ease;
}

.entdash-btn-primary:hover i {
  transform: translateX(6px);
}

/* Secondary */
.entdash-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.25);

  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.35s ease;
}

.entdash-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ================= ANIMATION ================= */
.entdash-fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease;
}

.entdash-fade-item.entdash-show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
  .entdash-title-main {
    font-size: 34px;
  }

  .entdash-subtitle-main {
    font-size: 19px;
  }
}



/* ============ SECTION ============== */
.cm-need-wrap {
  margin: 50px 0;
  padding: 50px 20px;
  text-align: center;
}

.cm-need-title {
  font-size: 48px;
  font-weight: 500;
  color: #0b0b0b;
  margin-bottom: 48px;
  letter-spacing: 1px;
}

/* ================= GRID ================= */
.cm-need-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ================= CARD ================= */
.cm-need-card {
  background: linear-gradient(135deg, #f4fff9, #edfcf4);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;

  /* NEW: light blue border */
  border: 1.2px solid rgba(120, 200, 170, 0.45);

  /* very light shadow */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);

  /* animation base */
  opacity: 0;
  transform: translateY(30px);
}


/* ================= ICON ================= */
.cm-need-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0b9a77, #03665a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cm-need-icon i {
  font-size: 21px;
  color: #ffffff;
  font-weight: 600;
}

/* ================= TEXT ================= */
.cm-need-text {
  font-size: 17px;
  font-weight: 550;
  /* 🔥 increased weight */
  color: #2b2f38;
  text-align: left;
  line-height: 1.45;
}

/* ================= ANIMATION ================= */
@keyframes cmNeedFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px) {
  .cm-need-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:560px) {
  .cm-need-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== SECTION ===== */
.soln-sec-wrap {
  padding: 80px 20px;
  background: #f8fafc;
  overflow-x: hidden;
}

.soln-sec-head {
  text-align: center;
  margin-bottom: 50px;
}

.soln-sec-head h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.soln-sec-head p {
  font-size: 21px;
  color: #555;
}

/* ===== CARD BASE (NO ANIMATION HERE) ===== */
.soln-main-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e6e6e6;
}

.soln-main-card:hover {
  box-shadow: 0 20px 15px rgba(0, 0, 0, 0.06);
}

/* ===== CARD HEADER ===== */
.soln-card-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 35px;
}

.soln-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #1f5eff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.soln-card-icon.purple {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.soln-card-icon.darkblue {
  background: linear-gradient(135deg,
      #1e3a8a,
      #2563eb);
}

.soln-card-icon.red {
  background: linear-gradient(135deg, #ef4444, #f87171);

}

.soln-card-icon.lightblue {
  background: linear-gradient(135deg,
      #0284c7,
      /* dark sky blue */
      #0369a1
      /* deep sky blue */
    );
}

.soln-card-title h3 {
  font-size: 24px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 6px;
}

.soln-card-title p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* ===== INNER GRID ===== */
.soln-inner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ===== INNER BOX ===== */
.soln-inner-box {
  padding: 22px;
  border-radius: 16px;
}

.soln-inner-box h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.soln-list {
  list-style: none;
}

.soln-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.3;
}

.soln-list i {
  font-size: 18px;
  font-weight: 600;
}

/* BLUE BOX */
.soln-blue-box {
  background: linear-gradient(135deg, #f6f9ff, #eef4ff);
  border: 1px solid rgba(31, 94, 255, 0.22);
}

.soln-darkblue-box {
  background: linear-gradient(135deg, #f6f9ff, #eef4ff);
  border: 1px solid rgba(31, 94, 255, 0.22);
}

.soln-purple-box {
  background: linear-gradient(135deg, #f6f2ff, #efe9ff);
  border: 1px solid rgba(169, 31, 255, 0.22);
}

.soln-red-box {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border: 1px solid rgba(169, 31, 255, 0.22);
}

.soln-lightblue-box {
  background: linear-gradient(135deg,
      #f3f9ff,
      #e8f3ff,
      #dcecff);
  border: 1px solid #9dd0ff;
  ;
}

.soln-blue-box h4,
.soln-blue-box i {
  color: #1f5eff;
}

.soln-purple-box h4,
.soln-purple-box i {
  color: #6d28d9;

}

.soln-red-box h4,
.soln-red-box i {
  color: #b91c1c;
}

.soln-darkblue-box h4,
.soln-darkblue-box i {
  color: #0f2a44;
}

.soln-lightblue-box h4,
.soln-lightblue-box i {
  color: #1e429f;

}

/* WHITE BOX */
.soln-white-box {
  background: #ffffff;
}

.soln-white-box h4 {
  color: #1c1c1c;
}

.soln-white-box i {
  color: #9aa3ad;
}

/* GREEN BOX */
.soln-green-box {
  background: linear-gradient(135deg, #f4fff9, #edfcf4);
  border: 1px solid rgba(20, 164, 77, 0.22);
}

.soln-green-box h4,
.soln-green-box i {
  color: #14a44d;
}

/* ===== ANIMATION CLASSES ONLY ===== */

/* ERP – RIGHT → CENTER */
.soln-animate-card {
  opacity: 0;
  transform: translateX(120px);
  transition: transform 1.3s ease, opacity 1.3s ease;
  will-change: transform, opacity;
}

.soln-animate-card.soln-card-show {
  opacity: 1;
  transform: translateX(0);
}

/* CRM – LEFT → CENTER */
.soln-crm-animate {
  opacity: 0;
  transform: translateX(-120px);
  transition: transform 1.3s ease, opacity 1.3s ease;
  will-change: transform, opacity;
}

.soln-crm-animate.soln-crm-show {
  opacity: 1;
  transform: translateX(0);
}

/* CRM ICON */
.soln-crm-icon {
  background: #16a34a;
}

.soln-crm-icon.orange {
  background: linear-gradient(135deg, #f97316, #fb923c);

}

/* CRM BOXES */
.soln-crm-lightgreen {
  background: linear-gradient(135deg, #f2fdf7, #e9fbf1);
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.soln-crm-orange {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);

  border: 1px solid rgba(163, 123, 22, 0.18);
}

.soln-crm-benefits {
  background: linear-gradient(135deg, #f4fff9, #edfcf4);
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.soln-crm-lightgreen h4,
.soln-crm-benefits h4,
.soln-crm-lightgreen i,
.soln-crm-benefits i {
  color: #16a34a;
}

.soln-crm-orange h4,
.soln-crm-orange i {
  color: #c2410c;

}

/* RESPONSIVE */
@media(max-width:900px) {
  .soln-inner-grid {
    grid-template-columns: 1fr;
  }
}



/* ================= SECTION ================= */
.darch2-sec-wrap {
  padding: 60px 20px;
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
}

/* ================= HEADER ================= */
.darch2-head-box {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.darch2-main-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
  margin-bottom: 12px;
}

.darch2-sub-title {
  font-size: 24px;
  font-weight: 600;
  color: #334155;
}

/* ================= GRID ================= */
.darch2-card-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ================= CARD BASE ================= */
.darch2-info-card {
  border-radius: 18px;
  padding: 34px 34px 38px;
  opacity: 0;

  /* BOTTOM SHADOW ONLY (VERY LIGHT) */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* ================= LEFT CARD (LIGHT BLUE) ================= */
.darch2-card-blue {
  background: linear-gradient(180deg,
      #fbfdff,
      #f4f9ff);
  border: 1.5px solid #cfe5ff;
}

/* ================= RIGHT CARD (LIGHT GREEN) ================= */
.darch2-card-green {
  background: linear-gradient(180deg,
      #fbfefe,
      #f3fbf7);
  border: 1.5px solid #c7ecd9;
}

/* ================= ICON ================= */
.darch2-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.darch2-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

/* icon colors */
.darch2-icon-blue {
  background: linear-gradient(135deg,
      #1e3a8a,
      #2563eb);
}

.darch2-icon-green {
  background: #16a34a;
}

.darch2-card-title {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #0f172a;
}

/* ================= CONTENT ================= */
.darch2-list-block {
  font-size: 14px;
  line-height: 1.5;
  color: #334155;
}

.darch2-list-block b {
  color: #0f172a;
}

.darch2-list-block ul {
  margin-top: 8px;
  margin-bottom: 10px;
  padding-left: 18px;
}

.darch2-list-block li {
  margin-bottom: 6px;
}

/* ================= ANIMATION ================= */
.darch2-left-anim {
  transform: translateX(-70px);
  transition: all 1.05s ease;
}

.darch2-right-anim {
  transform: translateX(70px);
  transition: all 1.05s ease;
}

.darch2-show {
  opacity: 1;
  transform: translateX(0);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px) {
  .darch2-card-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= SECTION ================= */
.etlpipe-sec-wrap {
  padding: 60px 20px;
}

.etlpipe-sec-box {
  max-width: 1200px;
  margin: auto;
  background: linear-gradient(180deg, #f3f8ff 0%, #ffffff 100%);
  border: 1px solid #e3ecfb;
  border-radius: 18px;
  padding: 40px 40px;
  box-shadow: 0 3px 10px rgba(20, 40, 90, 0.08);
}

/* ================= TITLE ================= */
.etlpipe-sec-title {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #1f2a44;
  margin-bottom: 45px;
}

/* ================= CARD GRID ================= */
.etlpipe-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media(max-width:900px) {
  .etlpipe-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CARD ================= */
.etlpipe-card {
  background: #ffffff;
  border: 1px solid #e4ebf8;
  border-radius: 16px;
  padding: 26px 26px 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateX(120px);
  transition:
    transform 0.9s cubic-bezier(.22, .61, .36, 1),
    opacity 0.9s ease,
    box-shadow 0.35s ease;
}

.etlpipe-card.etlpipe-card-show {
  opacity: 1;
  transform: translateX(0);
}

.etlpipe-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* ================= CARD HEADER ================= */
.etlpipe-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.etlpipe-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2f54eb, #4f83ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;

}

.etlpipe-icon-wrap i {
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
}

/* .etlpipe-icon-wrap i{
  color:#ffffff;
  font-size:23px;
  font-weight: 600;
  z-index: 1;
} */
.etlpipe-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2a44;
}

/* ================= CARD LIST ================= */
.etlpipe-card-list {
  list-style: none;
}

.etlpipe-card-list li {
  font-size: 14.5px;
  color: #4b5568;
  line-height: 1.4;
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
}

.etlpipe-card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f54eb;
  font-size: 15px;
  line-height: 1;
}


/* =============== SECTION =============== */
.dashtech-sec-wrap {
  padding: 60px 20px;
  background: #f8fafc;
}

.dashtech-container {
  max-width: 1200px;
  margin: auto;
}

/* =============== HEADER =============== */
.dashtech-title {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.dashtech-subtitle {
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 46px;
}

/* =============== GRID =============== */
.dashtech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media(max-width:900px) {
  .dashtech-grid {
    grid-template-columns: 1fr;
  }
}

/* =============== CARD =============== */
.dashtech-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px 24px 20px;
  box-shadow: 0 10px 18px -12px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition:
    transform 1s cubic-bezier(.22, .61, .36, 1),
    opacity 1s ease;
}

/* TOP cards animation */
.dashtech-from-top {
  transform: translateY(-70px);
}

/* BOTTOM cards animation */
.dashtech-from-bottom {
  transform: translateY(70px);
}

.dashtech-card.dashtech-show {
  opacity: 1;
  transform: translateY(0);
}

/* =============== CARD CONTENT =============== */
.dashtech-card-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* feature list */
.dashtech-list {
  list-style: none;
  margin-bottom: 14px;
}

.dashtech-list li {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.dashtech-list i {
  color: #10b981;
  font-size: 17px;
  font-weight: 600;
}

/* HR divider */
.dashtech-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 14px 0;
}

/* use when */
.dashtech-use-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #6b7280;
  margin-bottom: 6px;
}

.dashtech-use-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}


/* ========== SECTION BG ========== */
.secguard-wrap {
  padding: 60px 20px;
  background:
    radial-gradient(circle at top right, #1f3a5f 0%, transparent 55%),
    linear-gradient(135deg, #0b1220 0%, #13263f 50%, #0b1220 100%);
  color: #ffffff;
}

/* ========== HEADER ========== */
.secguard-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.secguard-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.secguard-subtitle {
  font-size: 23px;
  font-weight: 600;
  color: #cfd8e3;
}

/* ========== GRID ========== */
.secguard-grid {
  max-width: 1150px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

@media(max-width:1000px) {
  .secguard-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== CARD ========== */
.secguard-card {
  background: linear-gradient(180deg, #22344d 0%, #1a2b42 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px 26px 28px;
  /* box-shadow:
    0 20px 35px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05); */
  position: relative;
  opacity: 0;
  transform: translateX(140px) translateY(var(--stackY));
  transition:
    transform 1.1s cubic-bezier(.22, .61, .36, 1),
    opacity 1.1s ease;
}

.secguard-card.secguard-show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ========== CARD HEADER ========== */
.secguard-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.secguard-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #14b8a6, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow:0 8px 18px rgba(20,184,166,0.45); */
}

.secguard-icon i {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

.secguard-card-title {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ========== LIST ========== */
.secguard-list {
  list-style: none;
}

.secguard-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: #d1d9e6;
  margin-bottom: 10px;
  line-height: 1.3;
}

.secguard-list i {
  color: #2dd4bf;
  font-size: 17px;
  font-weight: 600;
}

/* ========== STACK DEPTH ========== */
.secguard-card:nth-child(1) {
  --stackY: 0px;
  z-index: 3;
}

.secguard-card:nth-child(2) {
  --stackY: 16px;
  z-index: 2;
}

.secguard-card:nth-child(3) {
  --stackY: 32px;
  z-index: 1;
}


/* ===== SECTION ===== */
.roi-sec-wrap {
  padding: 60px 20px;
}

.roi-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.roi-title {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.roi-subtitle {
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 48px;
}

/* ===== GRID ===== */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media(max-width:950px) {
  .roi-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CARD BASE ===== */
.roi-card {
  border-radius: 16px;
  padding: 24px 24px 26px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 16px -12px rgba(0, 0, 0, 0.25);
  opacity: 1;
}

/* ===== CARD VARIANTS ===== */
.roi-blue {
  background: linear-gradient(180deg, #f5f9ff 0%, #fafdff 100%);
}

.roi-purple {
  background: linear-gradient(180deg, #faf5ff 0%, #fdfbff 100%);
}

.roi-green {
  background: linear-gradient(180deg, #f4fff8 0%, #fafffb 100%);
}

/* ===== ANIMATION STATES ===== */
.roi-from-left {
  opacity: 0;
  transform: translateX(-90px);
  transition: transform 1s cubic-bezier(.22, .61, .36, 1), opacity 1s ease;
}

.roi-from-right {
  opacity: 0;
  transform: translateX(90px);
  transition: transform 1s cubic-bezier(.22, .61, .36, 1), opacity 1s ease;
}

.roi-show {
  opacity: 1;
  transform: translateX(0);
}

/* ===== ICON ===== */
.roi-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.roi-icon i {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.roi-icon-blue {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.roi-icon-purple {
  background: linear-gradient(135deg, #9333ea, #a855f7);
}

.roi-icon-green {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

/* ===== CARD CONTENT ===== */
.roi-card-title {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.roi-section-title {
  font-size: 13px;
  font-weight: 700;
  margin: 14px 0 6px;
}

.roi-red {
  color: #dc2626;
}

.roi-green-text {
  color: #15803d;
}

.roi-sep {
  margin-top: 6px;
  color: #374151;
  font-size: 14px;
  font-weight: 400;
}

.roi-muted {
  color: #374151;
  font-size: 13.5px;
  line-height: 1.6;
}

/* ===== LIST ===== */
.roi-list {
  list-style: none;
  margin-bottom: 8px;
}

.roi-list li {
  font-size: 13.5px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ===== HR ===== */
.roi-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 14px 0;
}

/* ===== FOOT TEXT ===== */
.roi-footer {
  font-size: 15px;
  font-weight: 600;
  color: #115a2d;
  margin-top: 8px;
}

/* dot ONLY for before/after lists */
.roi-dot-list li {
  position: relative;
  padding-left: 12px;
}

.roi-dot-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #374151;
  /* image-la irukkura dark gray feel */
  font-size: 12px;
  /* line-height:1; */
}


/* ========== SECTION ========== */
.dss-wrap {
  padding: 60px 20px;
  background: #f8fafc;
}

.dss-head {
  text-align: center;
  margin-bottom: 50px;
}

.dss-head h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
}

.dss-head p {
  margin-top: 8px;
  font-size: 23px;
  font-weight: 600;
  color: #475569;
  font-weight: 500;
}

/* ========== CARD ========== */
.dss-card {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border: 1px solid #e6ebf2;
  border-radius: 18px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;

  /* animation */
  opacity: 0;
  transform: translateY(-80px);
  transition: all 1s ease;
}

.dss-card.dss-show {
  opacity: 1;
  transform: translateY(0);
}

/* ========== LEFT CONTENT ========== */
.dss-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: #0f172a;
}

.dss-label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin-top: 14px;
}

.dss-text {
  margin-top: 6px;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* checklist */
.dss-list {
  margin-top: 12px;
}

.dss-list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14.5px;
  color: #334155;
}

.dss-list i {
  color: #10b981;
  font-size: 17px;
  font-weight: 700;
}

/* metrics */
.dss-metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  font-size: 14px;
  color: #475569;
}

/* ========== RIGHT GREEN CARD ========== */
.dss-result {
  background: linear-gradient(180deg, #f0fdf4, #ecfdf5);
  border: 1px solid #c7f3d9;
  border-radius: 14px;
  padding: 26px;
}

.dss-result h4 {
  font-size: 14px;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 16px;
}

.dss-stat {
  margin-bottom: 16px;
}

.dss-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #16a34a;
}

.dss-stat span {
  font-size: 13.5px;
  color: #166534;
}

/* ========== RESPONSIVE ========== */
@media(max-width:900px) {
  .dss-card {
    grid-template-columns: 1fr;
  }
}



/* ================= SECTION ================= */
.cta-sec-wrap {
  padding: 60px 20px;
  background: linear-gradient(180deg, #0d9b87, #047b78);
  color: #ffffff;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ================= TEXT ================= */
.cta-title {
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(25px);
  transition: 0.9s ease;
}

.cta-subtitle {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(25px);
  transition: 0.9s ease;
}

.cta-desc {
  font-size: 17px;
  color: #e6f7f5;
  max-width: 630px;
  margin: 0 auto 36px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(25px);
  transition: 0.9s ease;
}

/* ================= BUTTONS ================= */
.cta-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 55px;
}

.cta-btn-main {
  background: #ffffff;
  color: #047b78;
  border: none;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cta-btn-main i {
  transition: transform 0.3s ease;
}

.cta-btn-main:hover i {
  transform: translateX(6px);
}

.cta-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cta-btn-outline:hover {
  transition: all 0.3s ease;
  cursor: pointer;
  background: rgba(88, 80, 80, 0.18);
}

/* ================= BOTTOM CARDS ================= */
.cta-card-wrap {
  display: grid;
  margin-left: 200px;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.cta-mini-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s ease;
}

.cta-mini-card:hover {
  cursor: pointer;
  background: rgba(129, 122, 122, 0.18);
}

.cta-mini-card i {
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}

.cta-mini-card p {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
}

/* ================= SHOW ================= */
.cta-show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px) {
  .cta-card-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:520px) {
  .cta-card-wrap {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 32px;
  }
}