* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

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;
}


/* ===== SECTION ===== */
.saas-hero-wrap {
  overflow-x: hidden;
  padding: 60px 20px;
  background: linear-gradient(135deg, #7b1fff, #8f00ff);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

/* ===== ICON ===== */
.saas-hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 26px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;

}

.saas-hero-icon i {
  font-size: 38px;
  font-weight: 700;
}

/* ===== TEXT ===== */
.saas-hero-title {
  margin-top: 10px;
  font-size: 57px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.saas-hero-sub {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 24px;
}

.saas-hero-para {
  max-width: 900px;
  margin: 0 auto 22px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #f0dcff;
}

.saas-hero-para-strong {
  max-width: 870px;
  margin: 0 auto 42px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.7;
  color: #ffffff;
}

/* ===== BUTTONS ===== */
.saas-btn-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.saas-btn-primary {
  background: #ffffff;
  color: #7b1fff;
  padding: 18px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.saas-btn-primary i {
  transition: transform .35s ease;
}

.saas-btn-primary:hover i {
  transform: translateX(6px);
}

.saas-btn-outline {
  background: transparent;
  color: #ffffff;
  padding: 18px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background .35s ease;
}

.saas-btn-outline:hover {
  background: rgba(0, 0, 0, 0.18);
}

/* ===== ANIMATION ===== */
.saas-fade {
  opacity: 0;
  transform: translateY(32px);
}

.saas-fade.saas-show {
  opacity: 1;
  transform: translateY(0);
  transition: all 1.3s ease;
}



/* ============ SECTION ============== */
.cm-need-wrap {
  overflow-x: hidden;
  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,
      #f9f6ff 0%,
      #fdf7ff 40%,
      #f5f1ff 100%);

  border: 1px solid #e4dcff;

  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  /* 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, #7b1fff, #8f00ff);
  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;
  line-height: 1.3;
}

.soln-list li {
  display: flex;
  gap: 7px;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.soln-list i {
  font-size: 19px;
  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 {
  color: #1f5eff;
}

.soln-blue-box i {
  color: #9aa3ad;
  font-size: 19px;
}

.soln-purple-box h4 {
  color: #6d28d9;
}

.soln-purple-box i {
  color: #9aa3ad;
  font-size: 19px;
}

.soln-red-box h4,
.soln-red-box i {
  color: #b91c1c;


}

/* WHITE BOX */
.soln-white-box {
  background: #ffffff;
  line-height: 1.3;
}

.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 {
  color: #14a44d;
}

.soln-green-box i {
  color: #9aa3ad;
  font-size: 19px;
}

/* ===== 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 {
  color: #c2410c;
}

.soln-crm-orange i {
  color: #9aa3ad;
  font-size: 19px;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .soln-inner-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== SECTION ===== */
.scale-sec-wrap {
  overflow-x: hidden;
  padding: 60px 20px;
  text-align: center;
}

.scale-title {
  font-size: 48px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 15px;
}

.scale-sub {
  font-size: 24px;
  font-weight: 600;
  color: #444;
  margin-bottom: 50px;
}

/* ===== GRID ===== */
.scale-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== CARD ===== */
.scale-card {
  /* background:linear-gradient(135deg,#ffffff,#f8f6ff); */
  background: #f7fafc;
  border: 1px solid #e4dcff;
  border-radius: 16px;
  padding: 26px 26px 30px;
  text-align: left;
  position: relative;

  /* REALISTIC BOTTOM SHADOW */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);

}

/* ===== ICON ===== */
.scale-phase {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.scale-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7b1fff, #a855f7);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.scale-phase h4 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
}

.scale-phase span {
  display: block;
  font-size: 14px;
  color: #8a2be2;
  font-weight: 600;
  margin-top: 4px;
}

/* ===== CONTENT ===== */
.scale-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  margin: 18px 0 8px;
}

.scale-card ul {
  list-style: none;
}

.scale-card li {
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.scale-card li i {
  color: #16a34a;
  font-size: 16px;
  font-weight: 600;
}

/* ===== CARD ANIMATION ONLY ===== */
.scale-anim {
  opacity: 0;
}

.scale-left {
  transform: translateX(-120px);
}

.scale-right {
  transform: translateX(120px);
}

.scale-mid {
  transform: translateY(100px);
}

.scale-show {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 1.5s cubic-bezier(.22, .61, .36, 1);
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
  .scale-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== SECTION===== */
.es-sec-wrap {
  overflow-x: hidden;
  min-height: 100vh;
  padding: 60px 20px;
  background: linear-gradient(180deg, #0f1c2f 0%, #0b1424 100%);
  color: #ffffff;
}

/* ===== HEADING ===== */
.es-sec-head {
  text-align: center;
  margin-bottom: 60px;
}

.es-sec-head h1 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.es-sec-head p {
  font-size: 23px;
  color: #c9d3ea;
  font-weight: 600;
}

/* ===== GRID ===== */
.es-sec-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ===== CARD ===== */
.es-sec-card {
  background: linear-gradient(180deg, #1e2b44 0%, #18233a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 28px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
  opacity: 0;
}

/* ===== LEFT / RIGHT ANIMATION START ===== */
.es-left-anim {
  transform: translateX(-80px);
}

.es-right-anim {
  transform: translateX(80px);
}

/* ===== SHOW STATE ===== */
.es-card-show {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(.22, .61, .36, 1);
}

/* ===== CARD TITLE ===== */
.es-card-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

/* ===== SECTION LABEL ===== */
.es-sub-title {
  font-size: 14px;
  font-weight: 700;
  color: #b98bff;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

/* ===== LIST ===== */
.es-sec-list {
  list-style: none;
  margin-bottom: 22px;
}

.es-sec-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: #e6ecff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.es-sec-list i {
  color: #b98bff;
  font-size: 16px;
  font-weight: 800;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .es-sec-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== PAGE BG ===== */
.ms-stack-wrap {
  overflow-x: hidden;
  min-height: 100vh;
  padding: 60px 20px;
  background: #f7fafc;
  color: #0f172a;
}

/* ===== HEADING ===== */
.ms-stack-head {
  text-align: center;
  margin-bottom: 60px;
}

.ms-stack-head h1 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0b1220;
  margin-bottom: 15px;
}

.ms-stack-head p {
  font-size: 23px;
  font-weight: 600;
  color: #475569;
}

/* ===== GRID ===== */
.ms-stack-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ===== CARD ===== */
.ms-stack-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px 25px;
  border: 1px solid #e5e7eb;

  opacity: 0;
  transform: translateX(90px);
}

/* ===== SHOW STATE ===== */
.ms-card-show {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.1s cubic-bezier(.22, .61, .36, 1);
}

/* ===== CARD TITLE ===== */
.ms-card-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 22px;
  color: #475569;
}

/* ===== SECTION HEAD ===== */
.ms-sub-head {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

/* ===== ITEM ===== */
.ms-stack-item {
  margin-bottom: 18px;
}

.ms-stack-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.ms-stack-item p {
  font-size: 15px;
  line-height: 1.2;
  color: #475569;
}

/* ===== LIST ===== */
.ms-stack-list {
  padding-left: 18px;
}

.ms-stack-list li {
  font-size: 15px;
  color: #475569;
  margin-bottom: 8px;
  line-height: 1.55;
}

/* ===== DIVIDER ===== */
.ms-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 22px 0;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .ms-stack-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION===== */
.sis-wrap {
  /* min-height:50vh; */
  overflow-x: hidden;
  padding: 40px 20px;
  background: #f7fafc;
}

/* ===== GRID ===== */
.sis-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ===== CARD BASE ===== */
.sis-card {
  border-radius: 18px;
  padding: 24px 22px;
  border: 1px solid;
  opacity: 0;
  transform: translateX(120px);
}

/* ===== SHOW ===== */
.sis-show {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(.22, .61, .36, 1);
}

/* ===== CARD THEMES ===== */
.sis-db {
  background: linear-gradient(180deg, #f4f9ff 0%, #f8fbff 100%);
  border-color: #dbeafe;
}

.sis-cloud {
  background: linear-gradient(180deg, #f3fff8 0%, #f7fffb 100%);
  border-color: #d1fae5;
}

.sis-devops {
  background: linear-gradient(180deg, #fcf6ff 0%, #fdf9ff 100%);
  border-color: #f3e8ff;
}

/* ===== TITLES ===== */
.sis-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.sis-db .sis-title {
  color: #1e3a8a;
}

.sis-cloud .sis-title {
  color: #166534;
}

.sis-devops .sis-title {
  color: #6b21a8;
}

/* ===== SUB HEAD ===== */
.sis-sub {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

/* ===== LIST ===== */
.sis-list {
  list-style: none;
  margin-bottom: 18px;
}

.sis-list li {
  font-size: 15px;
  color: #334155;
  line-height: 1.55;
  margin-bottom: 8px;
}

/* ===== ITEM TITLE ===== */
.sis-item {
  margin-bottom: 16px;
}

.sis-item strong {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.sis-item p {
  font-size: 15px;
  color: #475569;
  margin-top: 3px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1000px) {
  .sis-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== WRAPPER (IMPORTANT FIX) ===== */
.why-saas-wrap {
  padding: 60px 20px;
  background: #ffffff;
  overflow-x: hidden;
  /* as requested */
}

/* ===== HEADER ===== */
.why-saas-head {
  text-align: center;
  margin-bottom: 60px;
}

.why-saas-head h1 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
}

.why-saas-head p {
  margin-top: 20px;
  font-size: 23px;
  font-weight: 600;
  color: #475569;
}

/* ===== GRID ===== */
.why-saas-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ===== CARD ===== */
.why-saas-card {
  background: #f7fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
  /* bottom feel */
  opacity: 0;
  transform: translateY(-60px);
}

/* ===== SHOW ===== */
.why-saas-show {
  opacity: 1;
  transform: translateY(0);
  transition: all 1.2s cubic-bezier(.22, .61, .36, 1);
}

/* ===== CARD HEADER ===== */
.why-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  border: 1px solid #d8b4fe;
}

.why-icon svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}

.why-card-title {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
}

/* ===== SECTION LABELS ===== */
.why-label-red {
  font-size: 13px;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 8px;
}

.why-label-green {
  font-size: 13px;
  font-weight: 700;
  color: #16a34a;
  margin: 16px 0 8px;
}

.why-icon i {
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
}


/* ===== LIST ===== */
.why-list {
  list-style: none;
  margin-bottom: 14px;
}

.why-list li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 6px;
  line-height: 1.4;
}

/* ===== HR ===== */
.why-hr {
  height: 1px;
  background: #e5e7eb;
  margin: 18px 0;
}

/* ===== FOOT NOTE ===== */
.why-foot {
  font-size: 15px;
  font-weight: 700;
  color: #6b21a8;
  line-height: 1.55;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .why-saas-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== WRAPPER ===== */
.saas-built-wrap {
  padding: 60px 20px;
  background: #f7fcfa;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.saas-built-head {
  text-align: center;
  margin-bottom: 60px;
}

.saas-built-head h1 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
}

.saas-built-head p {
  margin-top: 20px;
  font-size: 23px;
  font-weight: 600;
  color: #475569;
}

/* ===== CARD ===== */
.saas-built-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(-70px);
}

/* ===== SHOW ===== */
.saas-show {
  opacity: 1;
  transform: translateY(0);
  transition: all 1.25s cubic-bezier(.22, .61, .36, 1);
}

/* ===== LEFT CONTENT ===== */
.saas-left h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
}

.saas-left .saas-sub {
  margin-top: 10px;
  font-size: 17px;
  font-weight: 700;
  color: #7c3aed;
}

/* ===== FORCE DOT LIST (BOTTOM ONLY) ===== */
.saas-dot-list {
  list-style-type: disc !important;
  padding-left: 20px !important;
  margin-top: 10px;
}

.saas-dot-list li {
  list-style-type: disc !important;
  display: list-item !important;
  color: #334155;
  margin-bottom: 6px;
}

/* safety: dot list la check icon varakoodadhu */
.saas-dot-list i {
  display: none;
}

/* ===== SECTION LABEL ===== */
.saas-label {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.6px;
}

.saas-label.gray {
  color: #64748b;
}

/* ===== TEXT ===== */
.saas-text {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
}

/* ===== LIST ===== */
.saas-list {
  list-style: none;
  margin-top: 10px;
}

.saas-list li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: #334155;
  margin-bottom: 8px;
  line-height: 1.3;
}

.saas-list i {
  color: #7c3aed;
  font-size: 17px;
  font-weight: 700;

}

/* ===== RIGHT RESULTS CARD ===== */
.saas-results {
  background: linear-gradient(180deg, #f0fdf4 0%, #f7fff9 100%);
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  padding: 22px;
}

.saas-results h4 {
  font-size: 14px;
  font-weight: 700;
  color: #15803d;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}

/* ===== METRIC ===== */
.saas-metric {
  margin-bottom: 16px;
}

.saas-metric strong {
  display: block;
  font-size: 23px;
  font-weight: 700;
  color: #15803d;
}

.saas-metric span {
  font-size: 15px;
  color: #64748b;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .saas-built-card {
    grid-template-columns: 1fr;
  }
}


/* ===== SECTIOIN ===== */
.cta-wrap {
  padding: 60px 20px;
  background: linear-gradient(135deg, #7a00e6, #8b1ce8, #9800c7);
  overflow-x: hidden;
}

.cta-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  color: #fff;
}

/* ===== TEXT ===== */
.cta-title {
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #ffffff;
}

.cta-subtitle {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
}

.cta-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #f1e8ff;
  margin-bottom: 40px;
}

/* ===== BUTTONS ===== */
.cta-btn-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .35s ease;
}

.cta-btn.primary {
  background: #fff;
  color: #7a00e6;
}

.cta-btn.primary .cta-arrow {
  transition: transform .35s ease;
}

.cta-btn.primary:hover .cta-arrow {
  transform: translateX(6px);
}

.cta-btn.outline {
  border: 2px solid rgba(255, 255, 255, .18);
  color: #fff;
}

.cta-btn.outline:hover {
  background: rgba(0, 0, 0, .18);
}

/* ===== BOTTOM CARDS ===== */
.cta-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-left: 200px;
}

.cta-card {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  padding: 20px 14px;
  transition: all .35s ease;
}

.cta-card i {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  display: block;
}

.cta-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.cta-card:hover {
  background: rgba(255, 255, 255, .22);
}

/* ===== FADE IN ANIMATION ===== */
.cta-fade {
  opacity: 0;
  transform: translateY(35px);
  transition: all .8s ease;
}

.cta-fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .cta-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:520px) {
  .cta-cards {
    grid-template-columns: 1fr;
  }
}