.rs-services-item .rs-services-icon .svg-icon{
    width: 30%;
}
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
  min-width: 220px; /* prevent shrinking */
  height: 1.2em; /* adjust for line-height */
  vertical-align: top;
}

.cd-words-wrapper b {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s;
}
    :root {
          --primary: #2563eb;
          --primary-dark: #1d4ed8;
          --accent: #16a34a;
          --bg: #f3f4f6;
          --text: #111827;
          --muted: #6b7280;
          --card-bg: #ffffff;
          --border: #e5e7eb;
          --radius: 10px;
          --shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
        }

        * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
        }

        body {
          font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
          background: radial-gradient(circle at top left, #eff6ff, #f9fafb);
          color: var(--text);
          line-height: 1.5;
        }

        a {
          color: inherit;
          text-decoration: none;
        }

        .page {
          max-width: 1100px;
          margin: 0 auto;
          padding: 24px 16px 40px;
        }

        /* Hero */
        .hero {
          display: grid;
          grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
          gap: 24px;
          align-items: center;
          margin-bottom: 32px;
        }

        @media (max-width: 800px) {
          .hero {
            grid-template-columns: 1fr;
          }
        }

        .hero-text {
          padding: 16px 8px;
        }

        .eyebrow {
          display: inline-flex;
          align-items: center;
          gap: 6px;
          padding: 4px 10px;
          border-radius: 999px;
          background: rgba(37, 99, 235, 0.08);
          color: var(--primary-dark);
          font-size: 12px;
          font-weight: 600;
          letter-spacing: 0.03em;
          text-transform: uppercase;
          margin-bottom: 10px;
        }
#009cff
        .hero-title {
          font-size: clamp(26px, 4vw, 32px);
          font-weight: 700;
          margin-bottom: 8px;
        }

        .hero-subtitle {
          font-size: 18px;
          color: var(--muted);
          max-width: 540px;
          margin-bottom: 18px;
        }

        .hero-badges {
               font-size: 18px;
     display: flex;
          flex-wrap: wrap;
          gap: 8px;
          margin-bottom: 20px;
        }

        .hero-badge {
          font-size: 16px;
          padding: 4px 10px;
          border-radius: 999px;
          background: #e0f2fe;
          color: #0369a1;
          font-weight: 600;
        }

        .hero-cta {
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
          align-items: center;
          margin-bottom: 12px;
        }

        .btn-primary {
          background: var(--primary);
          color: #ffffff;
          padding: 10px 18px;
          border-radius: 999px;
          border: none;
          font-size: 14px;
          font-weight: 600;
          cursor: pointer;
          display: inline-flex;
          align-items: center;
          gap: 6px;
          box-shadow: var(--shadow);
        }

        .btn-primary:hover {
          background: var(--primary-dark);
        }

        .btn-ghost {
          background: #e5edff;
          color: var(--primary-dark);
          padding: 9px 14px;
          border-radius: 999px;
          font-size: 13px;
          font-weight: 500;
          border: 1px solid #dbe2ff;
          cursor: pointer;
          display: inline-flex;
          align-items: center;
          gap: 6px;
        }

        .hero-note {
          font-size: 18px;
          color: var(--muted);
        }

        .hero-card {
          background: var(--card-bg);
          border-radius: 18px;
          padding: 18px 18px 16px;
          box-shadow: var(--shadow);
          border: 1px solid var(--border);
        }

        .hero-card-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 14px;
        }

        .hero-card-title {
          font-size: 26px;
          font-weight: 600;
        }

        .hero-chip {
          font-size: 18px;
          padding: 4px 10px;
          border-radius: 999px;
          background: #ecfdf3;
          color: var(--accent);
          font-weight: 600;
          display: inline-flex;
          align-items: center;
          gap: 4px;
        }

        .hero-pill-row {
          display: flex;
          flex-wrap: wrap;
          gap: 6px;
          margin-bottom: 12px;
        }

        .hero-pill {
          font-size: 11px;
          padding: 4px 10px;
          border-radius: 999px;
          background: #f3f4ff;
          color: #4f46e5;
          font-weight: 500;
        }

        .hero-card-list {
          font-size: 12px;
          color: var(--muted);
          margin-bottom: 12px;
        }

        .hero-card-list li {
          margin-bottom: 4px;
        }

        .hero-platforms {
          display: flex;
          flex-wrap: wrap;
          gap: 8px;
          margin-top: 6px;
        }

        .platform-pill {
          font-size: 11px;
          padding: 4px 10px;
          border-radius: 999px;
          border: 1px solid var(--border);
          background: #f9fafb;
          display: inline-flex;
          align-items: center;
          gap: 6px;
        }

        .platform-dot {
          width: 6px;
          height: 6px;
          border-radius: 50%;
          background: var(--primary);
        }

        /* Section */
        .section {
          margin-bottom: 32px;
        }

        .section-header {
          margin-bottom: 10px;
        }

        .section-kicker {
          font-size: 16px;
          font-weight: 600;
          color: var(--primary-dark);
          text-transform: uppercase;
          letter-spacing: 0.05em;
          margin-bottom: 4px;
        }

        .section-title {
          font-size: 20px;
          font-weight: 600;
          margin-bottom: 4px;
        }

        .section-subtitle {
          font-size: 18px;
          color: var(--muted);
        }

        /* Table */
        .table-card {
          background: var(--card-bg);
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          border: 1px solid var(--border);
          overflow: hidden;
        }

        .table-wrapper {
          width: 100%;
          overflow-x: auto;
        }

        table {
          width: 100%;
          border-collapse: collapse;
          font-size: 17px;
          min-width: 600px;
        }

        thead {
          background: #f3f4ff;
        }

        th, td {
          padding: 10px 12px;
          text-align: left;
          border-bottom: 1px solid #e5e7eb;
        }

        th {
          font-size: 12px;
          text-transform: uppercase;
          letter-spacing: 0.05em;
          color: var(--muted);
        }

        tbody tr:nth-child(even) {
          background: #f9fafb;
        }

        .highlight-cell {
          font-weight: 600;
          color: var(--primary-dark);
        }

        .tag-good {
          color: var(--accent);
          font-weight: 600;
        }

        .tag-bad {
          color: #dc2626;
          font-weight: 600;
        }

        .tag-mid {
          color: #ea580c;
          font-weight: 600;
        }

        /* Use-case grid */
        .usecase-grid {
          display: grid;
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 12px;
          margin-top: 14px;
        }

        @media (max-width: 700px) {
          .usecase-grid {
            grid-template-columns: 1fr;
          }
        }

        .usecase-card {
          background: var(--card-bg);
          border-radius: var(--radius);
          padding: 12px 12px 10px;
          border: 1px solid var(--border);
        }

        .usecase-title {
          font-size: 17px;
          font-weight: 600;
          margin-bottom: 4px;
        }

        .usecase-apps {
          font-size: 12px;
          color: var(--muted);
        }

        .badge-primary {
          display: inline-flex;
          align-items: center;
          gap: 4px;
          padding: 2px 8px;
          border-radius: 999px;
          font-size: 16px;
          background: #eff6ff;
          color: var(--primary-dark);
          margin-right: 4px;
          margin-top: 4px;
        }

        .badge-secondary {
          display: inline-flex;
          align-items: center;
          gap: 4px;
          padding: 2px 8px;
          border-radius: 999px;
          font-size: 11px;
          background: #f3f4f6;
          color: #4b5563;
          margin-right: 4px;
          margin-top: 4px;
        }

        /* Bottom CTA */
        .cta-strip {
          margin-top: 0px;
          background: linear-gradient(90deg, #2563eb, #47a3ff);
          color: #ffffff;
          border-radius: 18px;
          padding: 16px 16px 14px;
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          justify-content: space-between;
        }

        .cta-text {
          max-width: 480px;
        }

        .cta-title {
          font-size: 16px;
          font-weight: 600;
          margin-bottom: 4px;
        }

        .cta-subtitle {
          font-size: 13px;
          opacity: 0.9;
        }

        .cta-actions {
          display: flex;
          flex-wrap: wrap;
          gap: 100px;
          align-items: center;
        }

        .store-badge {
          font-size: 11px;
          padding: 6px 10px;
          border-radius: 999px;
          border: 1px solid rgba(255,255,255,0.4);
          display: inline-flex;
          align-items: center;
          gap: 8px;
          background: rgba(15,23,42,0.15);
        }

.store-icon-img {
  width: 100px;
  height: 100px;
  border-radius: 4px;
  object-fit: contain;
  background: ;
}


        /* Small list */
        ul {
          list-style: none;
        }



        }

.cd-words-wrapper b.is-visible {
  opacity: 1;
  position: relative;
}

.hecss
{
	    font-weight: bold;
    font-size: 31px;
	
}
.service-item
				{
				text-align:center;
				}
/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
	    background-color: #fff8eb;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #f8f3fd;
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/
.bg-primary
{
	background-color:#a156fa !important;
}


.toggle-container {
    width: 251px;
    padding: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: var(--background-color-2);
    border-radius: 6px;
    transition: background-color 0.3s ease-in-out 0.1s;
  }
  
  .fa-sun,.fa-moon {
    font-size: 1.5rem;
    color: #828FA3;
  }
  
  .text {
    color: #828FA3;
  }
  
  /* TOGGLE SWITCH STYLES */
  .switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 32px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #635FC7;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 5px;
    bottom: 5px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  /* CIRCLE STYLES AND ANIMATION */
  
  .darkCircle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2B2C37;
    clip-path: circle(0% at 50% 0%);
    z-index: -1;
  }
  
  .lightCircle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    clip-path: circle(0% at 50% 0%);
    z-index: -1;
  }
  
  .darkCircle.grow {
    animation-name: circle-grow;
    animation-duration: 0.7s;
    animation-timing-function: ease-in-out;
  }
  
  .lightCircle.grow {
    animation-name: circle-grow;
    animation-duration: 0.7s;
    animation-timing-function: ease-in-out;
  }
  
  .dark {
    --background-color: #2B2C37;
    --background-color-2: #20212C;
    --text-color: #fff;
    transition: background-color 0.3s ease-in-out 0.4s, color 0.7s ease-in-out;
  }
  
  .light {
    --background-color: #FFFFFF;
    --background-color-2: #F4F7FD;
    --text-color: #000000;
    transition: background-color 0.3s ease-in-out 0.4s, color 0.7s ease-in-out;
  }
  
  @keyframes circle-grow {
    0% {
      clip-path: circle(0% at 50% 0%);
    }
    
    100% {
      clip-path: circle(150% at 50% 0%);
    }
  }
  