* {
  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 ===== */
.csdev-hero-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #6b3cf3 0%, #7d2ae8 40%, #a01aa0 70%, #c2185b 100%);
}

.csdev-hero-inner {
  max-width: 1200px;
  text-align: center;
  color: #fff;
}

/* icon top */
.csdev-hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 48px;
  font-weight: bold;
  backdrop-filter: blur(8px);
  border: 1px solid gray;
}

/* fade animation base */
.csdev-fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.csdev-fade-item.csdev-show {
  opacity: 1;
  transform: translateY(0);
}

/* headings */
.csdev-main-title {
  font-size: 58px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.csdev-sub-title {
  font-size: 28px;
  font-weight: 700;
  color: #efe9ff;
  margin-bottom: 26px;
}

/* text */
.csdev-hero-text {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.8;
  color: #f4f1ff;
}

.csdev-hero-text strong {
  font-weight: 600;
  font-size: 19px;
}

.csdev-hero-text-strong {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.8;
  color: #f4f1ff;
  font-weight: 600;
  font-size: 19px;
}

/* buttons */
.csdev-btn-row {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* schedule button */
.csdev-btn-primary {
  background: #ffffff;
  color: #6a1b9a;
  border: none;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
}

.csdev-btn-primary i {
  transition: transform 0.35s ease;
}

.csdev-btn-primary:hover i {
  transform: translateX(6px);
}

/* download button */
.csdev-btn-outline {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
}

.csdev-btn-outline:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* responsive */
@media(max-width:768px) {
  .csdev-main-title {
    font-size: 40px;
  }

  .csdev-sub-title {
    font-size: 22px;
  }
}


/* ============ 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:#f8fbff; */
  background: linear-gradient(135deg,
      #ffffff 0%,
      #f9fbff 40%,
      #fff2fc 70%,
      #fcf6f6 100%);
  /* background: linear-gradient(
  135deg,
  #f3f3f3 0%,
  #ffeef2 35%,
  #f6f0f2 65%,
  #ffd9e3 100%
); */

  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;

  /* NEW: light blue border */
  border: 1px solid #f5eded;

  /* 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, #6b3cf3 0%, #7d2ae8 40%, #a01aa0 70%, #c2185b 100%);
  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.red {
  background: linear-gradient(135deg, #ef4444, #f87171);

}

.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;
}

.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-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-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;


}

/* 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 */
.arch-section-wrap {
  padding: 90px 20px;
}

.arch-section-head {
  text-align: center;
  margin-bottom: 60px;
}

.arch-section-head h2 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.arch-section-head p {
  font-size: 23px;
  font-weight: 700;
  color: #555;
}

/* GRID */
.arch-card-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.arch-fade-card {
  background: linear-gradient(180deg, #f1f6ff 0%, #ffffff 65%);
  border: 1px solid #e6e9f2;
  border-radius: 18px;
  padding: 28px;
  position: relative;

  opacity: 0;
  transform: translateY(80px);
  transition: transform 0.8s ease, opacity 0.8s ease,
    box-shadow .4s ease;

  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

.arch-fade-card:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.10);
}

/* ICON */
.arch-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  /* background:linear-gradient(135deg,#2563eb,#60a5fa); */
  background: linear-gradient(135deg, #5342eb, #9333ea);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
  transition: transform .3s ease;
}


/* TEXT */
.arch-fade-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.arch-card-row {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

.arch-card-row span {
  font-weight: bold;
  font-size: 12px;
  color: #555;
  margin-right: 4px;
}

.arch-card-example {
  font-size: 15px;
  color: #6d28d9;
  margin-top: 10px;
}

/* SHOW ANIMATION */
.arch-card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width:900px) {
  .arch-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION ===== */
.dev-method-sec {
  padding: 60px 20px;
  background: #f8fafc;
}

.dev-method-head {
  text-align: center;
  margin-bottom: 56px;
}

.dev-method-head h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.dev-method-head p {
  font-size: 24px;
  font-weight: 600;
  color: #334155;
}

/* ===== GRID (NO CHANGE) ===== */
.dev-method-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== CARD ===== */
.dev-method-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 15px 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);

  opacity: 0;
  transform: translateX(120px) translateY(12px);
  transition:
    opacity 1.1s ease,
    transform 1.1s cubic-bezier(.22, 1, .36, 1),
    box-shadow .4s ease;
}

.dev-method-card:hover {
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px);
}

/* ===== ICON ===== */
.dev-method-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 18px;
}

.group {
  display: flex;
  padding: 5px;
  gap: 10px;
}

/* icon gradients */
.icon-blue {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.icon-green {
  background: linear-gradient(135deg, #16a34a, #4ade80);
}

.icon-purple {
  background: linear-gradient(135deg, #7c3aed, #d946ef);
}

/* ===== TITLE ===== */
.dev-method-card h3 {
  font-size: 22px;
  margin-top: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  /* margin-bottom:16px; */
}

/* ===== LIST ===== */
.dev-method-list {
  list-style: none;
}

.dev-method-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #334155;
  margin-bottom: 10px;
}

.dev-method-list i {
  font-size: 18px;
  font-weight: 700;
}

/* check colors */
.check-blue {
  color: #2563eb;
}

.check-green {
  color: #16a34a;
}

.check-purple {
  color: #7c3aed;
}

/* ===== SHOW ANIMATION ===== */
.dev-card-show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .dev-method-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== SECTION ===== */
.secure-sec-wrap {
  background: linear-gradient(180deg, #0f1c2e, #17263d);
  padding: 70px 20px;
}

.secure-sec-head {
  text-align: center;
  margin-bottom: 60px;
}

.secure-sec-head h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #ffffff;
}

.secure-sec-head p {
  font-size: 23px;
  font-weight: 600;
  color: #cbd5e1;
}

/* ===== GRID ===== */
.secure-card-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* ===== MAIN CARD ===== */
.secure-main-card {
  background: linear-gradient(180deg, #1a2a42, #162538);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  opacity: 0;
  transition: opacity 1.4s ease, transform 1.4s cubic-bezier(.22, 1, .36, 1);
}

/* animation start states */
.secure-left-start {
  transform: translateX(-200px);
}

.secure-right-start {
  transform: translateX(200px);
}

.secure-card-show {
  opacity: 1;
  transform: translateX(0);
}

/* ===== CARD TITLE ===== */
.secure-main-card h3 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 22px;
  color: #ffffff;
}

/* ===== SECTION TITLE ===== */
.secure-sub-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #c084fc;
  margin-bottom: 15px;
}

.secure-sub-title.gray {
  color: lightgrey;
}

/* ===== LIST ===== */
.secure-list {
  list-style: none;
  margin-bottom: 20px;
}

.secure-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.secure-list i {
  font-size: 14px;
  color: #c084fc;
  margin-top: 3px;
}

/* ===== RIGHT CARD INNER BLOCK ===== */
.secure-inner-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 16px;
}

.secure-inner-box h4 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #ffffff;
}

.secure-inner-box ul {
  list-style: none;
}

.secure-inner-box li {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .secure-card-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== SECTION ===== */
.whycs-wrap {
  padding: 60px 20px;
}

.whycs-head {
  text-align: center;
  margin-bottom: 60px;
}

.whycs-head h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.whycs-head p {
  font-size: 24px;
  font-weight: 600;
  color: #475569;
}

/* ===== GRID ===== */
.whycs-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ===== CARD ===== */
.whycs-card {
  background: linear-gradient(180deg, #f1f6ff 0%, #ffffff 65%);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px 26px 28px;

  opacity: 0;
  transform: scale(0.94) translateY(24px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

.whycs-card.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ===== ICON ===== */
.whycs-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5342eb, #9333ea);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 16px;
}

.card-group {
  display: flex;
  gap: 10px;
}

/* ===== TITLE ===== */
.whycs-card h3 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* ===== LABELS ===== */
.whycs-label {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.label-red {
  color: #dc2626;
}

.label-green {
  color: #15803d;
}

.label-dark {
  color: #0f172a;
}

/* ===== TEXT ===== */
.whycs-text {
  font-size: 14px;
  color: #475569;
  margin-bottom: 15px;
}

/* ===== LIST ===== */
.whycs-list {
  list-style: none;
  margin-top: 6px;
}

.whycs-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #334155;
  margin-bottom: 6px;
}

.whycs-list i {
  font-size: 16px;
  font-weight: 600;
  color: #7c3aed;
  margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .whycs-grid {
    grid-template-columns: 1fr;
  }
}



/* ===== MAIN WRAP ===== */
.ltc-wrap {
  padding: 40px 20px;
}

.ltc-card {
  max-width: 1200px;
  margin: 0 auto;
  /* background:linear-gradient(135deg,#f6fef9,#f1fff7); */
  background: linear-gradient(135deg,
      #ffffff 0%,
      #f6fef9 45%,
      #f3fdf7 100%);
  border: 1px solid #b7f3d2;
  border-radius: 18px;
  padding: 50px 45px 40px;
}

/* ===== TITLE ===== */
.ltc-title {
  text-align: center;
  margin-bottom: 40px;
}

.ltc-title h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ===== INNER GRID ===== */
.ltc-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 35px;
}

/* ===== INNER BOX BASE ===== */
.ltc-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 26px;
  opacity: 0;
  transform: translateX(80px);
  transition: transform 1.3s ease, opacity 1.3s ease;
}

/* LEFT BOX */
.ltc-box.left {
  border: 1px solid #f4b6b6;
  transform: translateX(-80px);
}

/* RIGHT BOX */
.ltc-box.right {
  border: 1px solid #b9f0d1;
}

/* SHOW STATES */
.ltc-box.ltc-show {
  opacity: 1;
  transform: translateX(0);
}

/* ===== BOX HEADERS ===== */
.ltc-box h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.ltc-box.left h3 {
  color: #dc2626;
}

.ltc-box.right h3 {
  color: #16a34a;
}

/* ===== ROWS ===== */
.ltc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.ltc-row span {
  font-size: 14px;
  color: #374151;
}

.ltc-row strong {
  font-size: 16px;
  font-weight: 600;
}

/* SUB TEXT */
.ltc-sub {
  font-size: 13px;
  color: #6b7280;
  margin-top: -6px;
  margin-bottom: 14px;
}

/* HR */
.ltc-hr {
  height: 1px;
  background: #e5e7eb;
  margin: 22px 0;
}

/* TOTAL */
.ltc-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ltc-total span {
  font-size: 16px;
  font-weight: 600;
}

.ltc-total strong {
  font-size: 18px;
  font-weight: 600;
}

.ltc-box.left .ltc-total strong {
  color: #dc2626;
}

.ltc-box.right .ltc-total strong {
  color: #16a34a;
}




/* ===== SAVINGS ===== */
.ltc-savings {
  text-align: center;
}

.ltc-savings h4 {
  font-size: 18px;
  font-weight: 600;
  color: #166534;
  margin-bottom: 10px;
}

.ltc-savings p {
  font-size: 16px;
  color: #4b5563;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .ltc-inner-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== SECTION ===== */
.tech-wrap {
  background: #f8fafc;
  padding: 40px 20px;
}

.tech-head {
  text-align: center;
  margin-bottom: 60px;
}

.tech-head h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.tech-head p {
  font-size: 24px;
  font-weight: 600;
  color: #555;
}

/* ===== GRID ===== */
.tech-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== CARD ===== */
.tech-card {
  background: #ffffff;
  border: 1px solid #e6e8ef;
  border-radius: 18px;
  padding: 32px 30px 34px;

  /* bottom-only shadow */
  box-shadow: 0 14px 14px rgba(0, 0, 0, 0.06);

  opacity: 0;
  transform: translateX(160px) translateY(-10px);
  transition: transform 1.4s cubic-bezier(.22, .8, .36, 1),
    opacity 1.4s ease;
}

/* show */
.tech-card.tech-show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ===== CARD HEADER ===== */
.tech-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.tech-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

/* gradients */
.tech-blue {
  background: linear-gradient(135deg, #1e40af, #2563eb);
}

.tech-green {
  background: linear-gradient(135deg, #15803d, #16a34a);
}

.tech-purple {
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
}

.tech-card-head h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ===== CONTENT ===== */
.tech-block {
  margin-bottom: 8px;
}

.tech-block strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
  color: #111;
}

.tech-block ul {
  list-style: none;
}

.tech-block li {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* HR */
.tech-hr {
  height: 1px;
  background: #eceef4;
  margin: 10px 0;
}

/* DEFAULT – NO DOT (BACKEND stays clean) */
.tech-block ul {
  list-style: none;
  padding-left: 0;
}

/* FRONTEND + DATABASE – ENABLE DOT */
.tech-card:nth-child(2) .tech-block ul,
.tech-card:nth-child(3) .tech-block ul {
  list-style: disc;
  padding-left: 15px;
}

/* DOT COLOR & SPACING CONTROL */
.tech-card:nth-child(2) .tech-block li::marker,
.tech-card:nth-child(3) .tech-block li::marker {
  color: #6b7280;
  /* soft dark grey like image */
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}



/* ===== SECTION ===== */
.rwa-wrap {
  padding: 60px 20px;
}

.rwa-head {
  text-align: center;
  margin-bottom: 55px;
}

.rwa-head h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.rwa-head p {
  font-size: 24px;
  font-weight: 600;
  color: #111;
}

/* ===== MAIN CARD ===== */
.rwa-main {
  max-width: 1200px;
  margin: 0 auto;
  background: #f8fafc;
  border: 1px solid #e5efe9;
  border-radius: 18px;
  padding: 35px;

  /* bottom only shadow */
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);

  opacity: 0;
  transform: translateY(-120px) scale(0.97);
  transition: transform 1.4s cubic-bezier(.22, .8, .36, 1),
    opacity 1.4s ease;
}

/* show */
.rwa-main.rwa-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== GRID ===== */
.rwa-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 34px;
}

/* ===== LEFT CONTENT ===== */
.rwa-left h3 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.rwa-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}

.rwa-label.gray {
  color: #6b7280;
}

.rwa-label.green {
  color: #333;
  margin-top: 22px;
}

.rwa-left p {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ===== CHECK LIST ===== */
.rwa-list {
  list-style: none;
  margin-top: 12px;
}

.rwa-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 10px;
}

.rwa-list i {
  color: #9333ea;
  font-weight: 600;
  font-size: 17px;
}

/* ===== RIGHT CARD ===== */
.rwa-right {
  background: linear-gradient(135deg, #f4fff9, #edfcf4);
  border: 1px solid #c7f1da;
  border-radius: 16px;
  padding: 28px;
}

.rwa-right h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #166534;
  margin-bottom: 18px;
}

/* ===== RESULT ITEM ===== */
.rwa-result {
  margin-bottom: 16px;
}

.rwa-result strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 4px;
}

.rwa-result span {
  font-size: 13px;
  color: #374151;
}

/* LINK */
.rwa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #7c3aed;
  text-decoration: none;
}

/* Arrow base */
.rwa-link i {
  transition: transform 0.45s ease;
}

/* Hover – arrow moves right */
.rwa-link:hover i {
  transform: translateX(6px);
}


@keyframes rwaDropIn {
  from {
    transform: translateY(-20px);
  }

  to {
    transform: translateY(0);
  }
}


/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .rwa-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= SECTION ================= */
.cta-wrap {
  padding: 60px 20px;
  background: linear-gradient(135deg, #6b4df6, #7b1cf4, #b8328c);
  color: #fff;
}

.cta-inner {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* ================= TEXT ================= */
.cta-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
}

.cta-subtitle {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.cta-desc {
  font-size: 17px;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 40px;
  opacity: .95;
}

/* ================= BUTTONS ================= */
.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .35s ease;
}

.cta-btn i {
  transition: transform .35s ease;
}

/* Primary */
.cta-btn.primary {
  background: #fff;
  color: #7c3aed;
}

/* Arrow move */
.cta-btn.primary:hover i {
  transform: translateX(6px);
}

/* Secondary */
.cta-btn.secondary {
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

/* Download dark hover */
.cta-btn.secondary:hover {
  background: rgba(0, 0, 0, .18);
}

/* ================= BOTTOM CARDS ================= */
.cta-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-left: 160px;
}

.cta-mini-card {
  padding: 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  transition: background .35s ease;
}

.cta-mini-card:hover {
  background: rgba(185, 183, 183, 0.18);
}

.cta-mini-card i {
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}

.cta-mini-card p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

/* ================= ANIMATION ================= */
.cta-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.cta-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px) {
  .cta-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:520px) {
  .cta-title {
    font-size: 36px;
  }

  .cta-card-grid {
    grid-template-columns: 1fr;
  }
}