h2{
    font-size: 51px !important;
    padding-bottom: 10px !important;
    font-weight: 800 !important;
    line-height: 74px !important;
    color: black !important;
}

h2 span{
    font-size: 51px;
    padding-bottom: 10px;
    font-weight: 800;
    line-height: 74px;
    color: #6d007b;
}


/* ERP Hero Section */
.erp-hero-title{
    font-size: 51px;
    padding-bottom: 10px;
    font-weight: 800;
    line-height: 74px;
    color: black;
}

.erp-hero-title span {
    font-size: 51px;
    color: #6d007b;
}

@media (max-width: 1440px) {
.erp-hero-title span::after {
    position: absolute;
    content: "";
    /*top: 90%;*/
    right: 0;
    left: 85px;
    background: url(../img/extra.svg) no-repeat;
    width: 100%;
    display: block;
    height: 100px;
}
}

.erp-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  color: #fff;
}

.erp-left h3 {
  font-size: 34px;
  font-weight: 700;
}

.erp-left .sub-text {
  font-size: 18px;
  margin: 30px 0 25px;
  color: black;
}

.erp-btn {
  position: relative;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  color: #000;
  background: linear-gradient(120deg, #ffffff, #c700f5, #ffffff);
  background-size: 300% 300%;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
  animation: gradientMove 6s ease infinite;
}

/* Hover effect */
.erp-btn:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 12px 30px rgba(109, 0, 123, 0.35);
  background: linear-gradient(
    135deg,
    #6d007b,
    #9b1fae,
    #c23bd6
  );
}

/* Gradient animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.trusted {
  margin-top: 20px;
  font-style: italic;
  opacity: 0.9;
  color: white;
}

.erp-form {
  background: #ffffff;
  color: #333;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10;
}

.erp-form h5 {
  font-size: 20px;
  margin-bottom: 21px;
  color: #6d007b;
}

.erp-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.erp-form label {
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  display: block;
}

.req {
  color: red;
}

.erp-form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 5px;
  margin-left: 0px;
  cursor: text;
}

.erp-form input:focus {
  outline: none;
  border-color: #6d007b;
}

.erp-form button {
  width: 100%;
  margin-top: 20px;
  background: #6d007b;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.erp-form button:hover {
  background: #560060;
}

.snow::before,
.snow::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 200%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, white 50%, transparent 51%),
    radial-gradient(2px 2px at 40% 70%, white 50%, transparent 51%),
    radial-gradient(2px 2px at 60% 20%, white 50%, transparent 51%),
    radial-gradient(2px 2px at 80% 60%, white 50%, transparent 51%);
  background-size: 200px 200px;
  animation: snowFall 20s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}

.snow::after {
  animation-duration: 35s;
  opacity: 0.4;
}

@keyframes snowFall {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(50%);
  }
}

.erp-clients-animate {
  margin-top: 30px;
  overflow: hidden;
  width: 100%;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scrollClients 30s linear infinite;
}

.erp-clients-animate:hover .clients-track {
  animation-play-state: paused;
}

.clients-track img {
  height: 80px;
  max-width: 165px;
  object-fit: contain;
  /*filter: grayscale(100%);*/
  /*opacity: 0.7;*/
  transition: all 0.3s ease;
}

.clients-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* KEYFRAMES */
@keyframes scrollClients {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* end */


/* 2nd Section */
.erp-sec-section {
  padding: 80px 0;
  color: #333;
  font-family: 'Arial', sans-serif;
}

.erp-sec-content {
  margin-bottom: 50px;
  text-align: center;
  color: #6d007b !important;
}

.testimonial-container span::after {
    position: absolute;
    content: "";
    /*top: 90%;*/
    right: 0;
    left: 553px;
    background: url(../img/extra.svg) no-repeat;
    width: 100%;
    display: block;
    height: 100px;
}

@media (max-width: 1440px) {
    .testimonial-span::after {
    position: absolute;
    content: "";
    /*top: 90%;*/
    right: 0;
    left: 553px !important;
    background: url(../img/extra.svg) no-repeat;
    width: 100%;
    display: block;
    height: 100px;
}

.erp-sec-content span::after {
    position: absolute;
    content: "";
    /*top: 90%;*/
    right: 0;
    left: 700px;
    background: url(../img/extra.svg) no-repeat;
    width: 100%;
    display: block;
    height: 100px;
}
}

/*.erp-sec-content h2 {*/
/*  font-size: 51px;*/
/*  margin-bottom: 15px;*/
/*  font-weight: 700;*/
/*  color: #4a004f;*/
/*}*/

.erp-sec-content p {
  font-size: 16px;
  line-height: 1.6;
}

.erp-sec-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.erp-card {
  /*background: linear-gradient(135deg, #6d007b20, #ffffff);*/
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.erp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.erp-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #6d007b;
}

.erp-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #4a004f;
}

.erp-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  text-align: left;
  margin-top: 15px;
}

.erp-sec-btn {
  text-align: left;
}

.animated-btn {
  background: #6d007b;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.animated-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.animated-btn:hover::after {
  left: 0;
}

.animated-btn:hover {
  background: #4a004f;
  transform: translateY(-3px);
}

.erp-feature-bg {
  width: 60px;
  height: 60px;
  background: #6d007b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.erp-feature-bg img {
  width: 33px;        
  height: auto;
  border-radius: 8px; 
}

@media (max-width: 768px) {
  .erp-feature-bg {
    width: 70px;
    height: 64px;
  }

  .erp-feature-bg img {
    width: 52px;
  }
}
/* end */


/* ERP Module Section */
.erp-module-section {
  padding: 60px 0;
  background: #eeeeee;
  text-align: -webkit-center;
}

.erp-module-content {
  max-width: 750px;
  /*text-align: left;*/
}

.erp-module-content span {
    font-size: 51px;
    color: #6d007b;
}

@media (max-width: 1440px) {
.erp-module-content span::after {
    position: absolute;
    content: "";
    /*top: 90%;*/
    right: 0;
    left: 430px;
    background: url(../img/extra.svg) no-repeat;
    width: 100%;
    display: block;
    height: 100px;
}
}

/*.erp-module-content h2 {*/
/*  font-size: 42px;*/
/*  font-weight: 800;*/
/*  color: #2c2c2c;*/
/*  line-height: 1.15;*/
/*  margin-bottom: 20px;*/
/*}*/

.erp-module-content h2 span {
  color: #6d007b;
}

.erp-module-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  padding-top: 20px;
}

.erp-module-icons{
    padding: 40px 0px;
    background: #eeeeee;
    margin-top: -75px;
}
  
/*.erp-module-content h2{*/
/*  font-size: 36px;*/
/*  margin-bottom: 15px;*/
/*  font-weight: 700;*/
/*  color: #4a004f;*/
/*}*/

.erp-module-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.erp-module-card {
  position: relative;
  background: #ffffff;
  border-radius: 5px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.erp-module-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5px;
  pointer-events: none;

  background:
    linear-gradient(#6d007b 0 0) bottom left / 0% 2px no-repeat,
    linear-gradient(#6d007b 0 0) bottom right / 2px 0% no-repeat,
    linear-gradient(#6d007b 0 0) top right / 0% 2px no-repeat,
    linear-gradient(#6d007b 0 0) top left / 2px 0% no-repeat;

  opacity: 0;
}

.erp-module-card:hover::after {
  opacity: 1;
  animation: borderRun 1.6s linear infinite;
}

@keyframes borderRun {
  0% {
    background-size:
      0% 2px,
      2px 0%,
      0% 2px,
      2px 0%;
  }

  25% {
    background-size:
      100% 2px,
      2px 0%,
      0% 2px,
      2px 0%;
  }

  50% {
    background-size:
      100% 2px,
      2px 100%,
      0% 2px,
      2px 0%;
  }

  75% {
    background-size:
      100% 2px,
      2px 100%,
      100% 2px,
      2px 0%;
  }

  100% {
    background-size:
      100% 2px,
      2px 100%,
      100% 2px,
      2px 100%;
  }
}

.erp-icon {
  width: 48px;
  height: 48px;
  background: #f2eef3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.erp-icon img {
  width: 24px;
}

.erp-module-card:hover .erp-icon {
  background: #6d007b;
  transform: scale(1.1);
}

.erp-module-card:hover .erp-icon img {
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}

.erp-content h5 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
  color: #333;
}

a{
  font-size: 14px;
  margin: 0;
  font-weight: 600;
  color: #333;
}

.erp-content p {
  font-size: 12px;
  margin: 4px 0 0;
  color: #666;
}

@media (max-width: 1200px) {
  .erp-module-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .erp-module-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .erp-module-cards {
    grid-template-columns: 1fr;
  }
}
/* end */


/* Testimonial css */
.testimonial-section{
    padding: 60px 0px;
}

.testimonial-container {
  width: 100%;
  max-width: 56rem;
  padding: 2rem;
  margin: auto;
}

.testimonial-grid {
  display: grid;
  gap: 5rem;
}

.image-container {
  position: relative;
  width: 100%;
  height: 24rem;
  perspective: 1000px;
}

.testimonial-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.25rem;
}

.designation {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.quote {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.75;
}

.arrow-buttons {
  display: flex;
  gap: 1rem;
  padding-top: 3rem;
}

.arrow-button {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.arrow-button:hover {
  background-color: #00a6fb;
}

.arrow-button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #f1f1f7;
  transition: transform 0.3s;
}

.arrow-button:hover svg {
  fill: #ffffff;
}

.prev-button:hover svg {
  transform: rotate(-12deg);
}

.next-button:hover svg {
  transform: rotate(12deg);
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  .arrow-buttons {
    padding-top: 0;
  }
}
/* end */


/* 3rd Section */
.erp-third-section {
    padding: 80px 0;
    background: #eeeeee;
}

@media (max-width: 1440px) {
.erp-third-content span::after{
    position: absolute;
    content: "";
    /*top: 90%;*/
    right: 0;
    left: 424px;
    background: url(../img/extra.svg) no-repeat;
    width: 100%;
    display: block;
    height: 100px;
}
}

.erp-third-content {
    text-align: -webkit-center;
    margin-bottom: 30px;
}

/*.erp-third-content h2 {*/
/*    font-size: 36px;*/
/*    margin-bottom: 15px;*/
/*    font-weight: 700;*/
/*    color: #4a004f;*/
/*}*/

.erp-third-content p {
    font-size: 16px;
    line-height: 1.6;
    width: 850px;
}

.erp-third-carousel {
    position: relative;
}

.erp-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.erp-card:hover {
    transform: translateY(-8px);
}

/* Wrapper */
.erp-arrow-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Arrow button */
.erp-nav {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #f2f4f8;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    position: relative;
}

/* Arrow icons */
.erp-prev::before,
.erp-next::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transition: all 0.3s ease;
}

.erp-prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.erp-next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

/* Hover & active */
.erp-nav:hover {
    background: #6d007b;
    transform: scale(1.08);
}

.erp-nav:hover::before {
    border-color: #fff;
}

/* Smooth pulse */
.erp-nav {
    animation: erpPulse 2s infinite;
}

@keyframes erpPulse {
    0% { box-shadow: 0 0 0 0 rgba(13,110,253,0.35); }
    70% { box-shadow: 0 0 0 14px rgba(13,110,253,0); }
    100% { box-shadow: 0 0 0 0 rgba(13,110,253,0); }
}
/* end */


/* 4th Section */
.erp-fourth-content{
    text-align: -webkit-center;    
}

@media (max-width: 1440px) {
.erp-fourth-content span::after {
    position: absolute;
    content: "";
    /*top: 90%;*/
    right: 0;
    left: 465px;
    background: url(../img/extra.svg) no-repeat;
    width: 100%;
    display: block;
    height: 100px;
}
}

/*.erp-fourth-content h2{*/
/*    font-size: 36px;*/
/*    margin-bottom: 15px;*/
/*    font-weight: 700;*/
/*    color: #4a004f;*/
/*}*/

.erp-fourth-content p{
    font-size: 16px;
    line-height: 1.6;
    width: 850px;
}
.erp-fourth-section {
    padding: 80px 0;
}

.erp-fourth-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.erp-border-card {
    position: relative;
    padding: 40px 25px;
    text-align: center;
    border-radius: 18px;
    background: transparent;
    overflow: hidden;
}

.erp-border-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 18px;
    /*background: linear-gradient(120deg, #0d6efd, #6f42c1, #0d6efd);*/
    background: #ffddb0;
    background-size: 200% 200%;
    animation: borderMove 4s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.erp-border-card img {
    width: 55px;
    margin-bottom: 20px;
}

.erp-border-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.erp-border-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

.erp-border-card:hover {
    transform: translateY(-8px);
    transition: transform 0.4s ease;
}

@keyframes borderMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@media (max-width: 1024px) {
    .erp-fourth-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .erp-fourth-cards {
        grid-template-columns: 1fr;
    }
}

.erp-fourth-btn {
  position: relative;
  padding: 10px 20px;
  background: #fff;
  color: #6d007b;
  border: none;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
  overflow: hidden;
}

.erp-fourth-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #6d007b;
  border-radius: 8px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.erp-fourth-btn:hover::before {
  transform: scaleX(1);
}

.erp-fourth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(109, 0, 123, 0.3);
  color: #6d007b;
}
/* end */


/* 5th Section */
.erp-fifth-section {
    background: linear-gradient(135deg, #f3e6f6, #f9f0fb);
    padding: 80px 0;
}

.erp-fifth-section h3 {
    font-weight: 700;
    color: #6d007b;
    margin-bottom: 10px;
}

/*.erp-fifth-section h2 {*/
/*    font-size: 42px;*/
/*    font-weight: 800;*/
/*    color: #6d007b;*/
/*    margin-bottom: 5px;*/
/*}*/

.erp-fifth-section p {
    color: #555;
    font-size: 15px;
}

@media (max-width: 767px) {
    .erp-fifth-section {
        text-align: center;
    }
}
/* end */


/* Why Choose css */
.why-choose-section{
   padding: 60px 0px;  
   background: #eeeeee;
}

.why-choose-content {
    text-align: -webkit-center;
}

@media (max-width: 1440px) {
.why-choose-content span::after {
    position: absolute;
    content: "";
    /*top: 90%;*/
    right: 0;
    left: 350px;
    background: url(../img/extra.svg) no-repeat;
    width: 100%;
    display: block;
    height: 100px;
}
}

/*.why-choose-content h2{*/
/*    font-size: 36px;*/
/*    font-weight: 700;*/
/*    color: #4a004f;*/
/*}*/

:root {
  --main-color: #6d007b;
}

.container-why-choose {
  width: 100%;
  padding: 0 8%;
  background: #eeeeee;
}

/*.container-why-choose h2 {*/
/*  text-align: center;*/
  /*padding-top: 6%;*/
/*  margin-bottom: 60px;*/
/*  font-size: 1.8rem;*/
/*  font-weight: 600;*/
/*  position: relative;*/
/*}*/

/*.container-why-choose h2::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  bottom: -8px;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*  width: 100px;*/
/*  height: 5px;*/
/*  background-color: var(--main-color);*/
/*  border-radius: 20px;*/
/*}*/

.row-sec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
  gap: 30px;
}

.row-sec .service {
  padding: 25px 15px;
  background: transparent;
  font-size: 15px;
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
  transition: 0.5s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.row-sec .service:hover {
  color: #fff;
  background-color: var(--main-color);
  transform: scale(1.05);
  border-radius: 15px;
}

.row-sec .service i {
  color: var(--main-color);
  margin-bottom: 20px;
  font-size: 30px;
  transition: 0.5s;
}

.row-sec .service:hover i {
  color: #fff;
}

.row-sec .service h2 {
  font-weight: 600;
  margin-bottom: 20px;
}

.service:hover p {
  color: #fff;
}

.row-sec .service p {
  transition: color 0.3s ease;
  margin-bottom: 20px;
}
/* end */


/* Mobile apps css */
.mobile-apps-section{
    padding: 60px 0px;  
    background: #eeeeee;
}

.mobile-apps-content{
    text-align: center;
}

@media (max-width: 1440px) {
.mobile-apps-content span::after {
    position: absolute;
    content: "";
    /*top: 90%;*/
    right: 0;
    left: 580px;
    background: url(../img/extra.svg) no-repeat;
    width: 100%;
    display: block;
    height: 100px;
}
}

.mobile-apps-content h2{
    font-size: 36px;
    font-weight: 700;
    color: #4a004f;
}
/* end */


/* 6th Section */
.erp-six-section {
    padding: 80px 0;
}

.erp-six-content {
    text-align: -webkit-center;
}

.erp-six-content span::after{
    position: absolute;
    content: "";
    /*top: 90%;*/
    right: 0;
    left: 500px;
    background: url(../img/extra.svg) no-repeat;
    width: 100%;
    display: block;
    height: 100px;
}

.erp-six-content h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #4a004f;
}

.erp-six-slider {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
}

.erp-six-slider ul {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: max-content;
}

.erp-six-slider li {
    padding: 14px 24px;
    border: 1px solid rgba(109, 0, 123, 0.25);
    border-radius: 30px;
    background: #ffffff;
    font-size: 14px;
    color: #000;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* LEFT ➜ RIGHT */
.erp-left-slider {
    animation: slideLTR 45s linear infinite;
}

/* RIGHT ➜ LEFT */
.erp-right-slider {
    animation: slideRTL 45s linear infinite;
}

@keyframes slideLTR {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0%); }
}

@keyframes slideRTL {
    from { transform: translateX(0%); }
    to   { transform: translateX(-50%); }
}
/* end */


/* 7th Section */
.erp-seven-section {
    padding: 80px 0;
}

.erp-seven-section .container {
    background: #f9eef3; 
    border-radius: 24px;
    padding: 60px 40px;
}

.erp-sev-img img{
    width: 20%;
    height: 54px;
}

.erp-sev-col{
    width: 70%;
    margin-top: -74px;
}
/* end */


/* 8th Section */
.business-flow {
    padding: 80px 0;
    background: #ffffff;
}

.flow-title {
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    color: #4a004f;
    margin-bottom: 15px;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    border: 1px solid rgba(0,0,0,0.05);
}

.flow-item {
    height: 90px;
    border-right: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.flow-item:nth-child(16n) {
    border-right: none;
}

.flow-item img {
    max-height: 42px;
    opacity: 0.25;
    animation: softBlink 6s infinite ease-in-out;
}

.flow-item:nth-child(1) img  { animation-delay: 0s; }
.flow-item:nth-child(2) img  { animation-delay: 0.4s; }
.flow-item:nth-child(3) img  { animation-delay: 0.8s; }
.flow-item:nth-child(4) img  { animation-delay: 1.2s; }
.flow-item:nth-child(5) img  { animation-delay: 1.6s; }
.flow-item:nth-child(6) img  { animation-delay: 2s; }
.flow-item:nth-child(7) img  { animation-delay: 2.4s; }
.flow-item:nth-child(8) img  { animation-delay: 2.8s; }
.flow-item:nth-child(9) img  { animation-delay: 3.2s; }
.flow-item:nth-child(10) img { animation-delay: 3.6s; }
.flow-item:nth-child(11) img { animation-delay: 4s; }
.flow-item:nth-child(12) img { animation-delay: 4.4s; }
.flow-item:nth-child(13) img { animation-delay: 4.8s; }
.flow-item:nth-child(14) img { animation-delay: 5.2s; }
.flow-item:nth-child(15) img { animation-delay: 5.6s; }
.flow-item:nth-child(16) img { animation-delay: 6s; }

@keyframes softBlink {
    0%   { opacity: 0.25; }
    30%  { opacity: 1; }
    60%  { opacity: 0.25; }
    100% { opacity: 0.25; }
}

@media (max-width: 1024px) {
    .flow-grid {
        grid-template-columns: repeat(8, 1fr);
    }
    .flow-item:nth-child(8n) {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .flow-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .flow-item:nth-child(4n) {
        border-right: none;
    }
}
/* end */


/* 9th Section */
.erp-nine-section {
    padding: 80px 0;
    background: #ffffff;
}

.erp-nine-box {
    background: #dee9ff; 
    border-radius: 20px;
    padding: 60px;
}

.erp-nine-box h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 25px;
}

.erp-nine-box .subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.erp-nine-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.erp-nine-buttons button {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #6d007b;
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid #6d007b;
    color: #6d007b;
}

.call-text {
    font-size: 15px;
    color: #333;
}

.erp-phone-img {
    max-height: 320px;
    transform: translateY(175px);
    z-index: 2;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .erp-nine-box {
        padding: 40px 25px;
        text-align: center;
    }

    .erp-nine-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .erp-phone-img {
        transform: translateY(40px);
        max-height: 260px;
    }
}
/* end */


/* FAQ css */
.erp-faq-section{
    padding: 60px 0px;
}

.erp-faq-content{
    text-align: -webkit-center;
    margin-bottom: 45px;
}

@media (max-width: 1440px) {
.erp-faq-content span::after {
    position: absolute;
    content: "";
    /*top: 90%;*/
    right: 0;
    left: 650px;
    background: url(../img/extra.svg) no-repeat;
    width: 100%;
    display: block;
    height: 100px;
}
}

.erp-faq-content h2{
    font-size: 36px;
    font-weight: 700;
    color: #4a004f; 
    margin-bottom: 20px;
    text-align: center;
}

.wrapper {
  width: 60%;
}

.question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: #f4f4f4;     
  border-radius: 8px;
  margin-bottom: 8px;
  transition: background 0.3s ease;
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
}

.question.active + .answercont {
}

@media screen and (max-width: 790px){
      html {
        font-size: 14px;
      }
      .wrapper {
      width: 80%;
    }
}
/* end */


/* Trial Form css */
.erp-free-trial-content {
  margin: 0 auto;
  padding: 40px;
  background: #cfcfcf;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-radius: 35px;
}

@media (max-width: 1440px) {
.erp-free-trial-content span::after {
    position: absolute;
    content: "";
    /*top: 90%;*/
    right: 0;
    left: 650px;
    background: url(../img/extra.svg) no-repeat;
    width: 100%;
    display: block;
    height: 100px;
}
}

.erp-free-trial-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #4a004f;
  margin-bottom: 30px;
  text-align: center;
}

.erp-trial-form {
  max-width: 1000px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.form-row input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

.form-row input:focus {
  border-color: #6d007b;
  box-shadow: 0 0 0 2px rgba(109, 0, 123, 0.15);
}

.form-btn {
  margin-top: 30px;
  text-align: center;
}

.form-btn button {
  padding: 14px 40px;
  background: #6d007b;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.form-btn button:hover {
  background: #4a004f;
  transform: translateY(-2px);
}

.user-count {
  display: block;
  margin: 0 auto;
  max-width: 280px;   
  text-align: center; 
  position: relative;
  left: 373px;
}


@media (max-width: 992px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    margin-left: -53px;
  }

  .erp-free-trial-content h2 {
    font-size: 28px;
  }
}
/* end */


@media (max-width: 768px){
    .erp-hero-title span::after {
        left: 11px;
    }
    
    .erp-module-content span::after{
        left: 93px;
    }
    
    .erp-sec-content span::after{
        left: 360px;
    }
    
    .mobile-apps-content span::after{
        left: 262px;
    }
    
    .erp-third-content span::after{
        left: 90px;
    }
    
    .erp-fourth-content span::after{
        left: 268px;
    }
    
    .why-choose-content span::after{
        left: 166px;
    }
    
    .erp-six-content span::after{
        left: 220px;
    }
    
    .erp-free-trial-content span::after{
        left: 323px;
    }
    
    .erp-faq-content span::after{
        left: 330px;
    }
}

@media (width: 1024px) {
    .erp-hero-title span::after{
        left: 20px;
    }
    
    .erp-module-content span::after{
        left: 225px;
    }
    
    .erp-sec-content span::after{
        left: 500px;
    }
    
    .mobile-apps-content span::after{
        left: 397px;
    }
    
    .erp-third-content span::after{
        left: 219px;
    }
    
    .erp-fourth-content span::after{
        left: 268px;
    }
    
    .why-choose-content span::after{
        left: 166px;
    }
    
    .erp-six-content span::after{
        left: 346px;
    }
    
    .erp-free-trial-content span::after{
        left: 453px;
    }
    
    .erp-faq-content span::after{
        left: 460px;
    }
}

@media (max-width: 425px) {
    .erp-hero-title span::after {
        display: none;
    }
    
    .erp-module-content span::after{
        display: none;
    }
    
    .erp-sec-content span::after{
        display: none;
    }
    
    .mobile-apps-content span::after{
        display: none;
    }
    
    .erp-third-content span::after{
        display: none;
    }
    
    .erp-fourth-content span::after{
        display: none;
    }
    
    .why-choose-content span::after{
        display: none;
    }
    
    .erp-six-content span::after{
        display: none;
    }
    
    .erp-free-trial-content span::after{
        display: none;
    }
    
    .erp-faq-content span::after{
        display: none;
    }
}


/*@media (max-width: 2560px) {*/
/*    .erp-hero-title span::after{*/
/*        position: absolute;*/
/*        content: "";*/
         /*top: 90%; */
/*        right: 0;*/
/*        left: 580px;*/
/*    }*/
    
/*    .erp-module-content span::after{*/
/*        position: absolute;*/
/*        content: "";*/
         /*top: 90%; */
/*        right: 0;*/
/*        left: 990px;*/
/*    }*/
    
/*    .erp-sec-content span::after{*/
/*        position: absolute;*/
/*        content: "";*/
         /*top: 90%; */
/*        right: 0;*/
/*        left: 1010px;*/
/*    }*/
    
/*    .mobile-apps-content span::after{*/
/*        position: absolute;*/
/*        content: "";*/
         /*top: 90%; */
/*        right: 0;*/
/*        left: 1150px;*/
/*    }*/
    
/*    .erp-third-content span::after{*/
/*        position: absolute;*/
/*        content: "";*/
/*         top: 90%; */
/*        right: 0;*/
/*        left: 980px;*/
/*    }*/
    
/*    .erp-fourth-content span::after{*/
/*        position: absolute;*/
/*        content: "";*/
         /*top: 90%; */
/*        right: 0;*/
/*        left: 1100px;*/
/*    }*/
    
/*    .why-choose-content span::after{*/
/*        position: absolute;*/
/*        content: "";*/
         /*top: 90%; */
/*        right: 0;*/
/*        left: 950px;*/
/*    }*/
    
/*    .erp-six-content span::after{*/
/*        position: absolute;*/
/*        content: "";*/
         /*top: 90%; */
/*        right: 0;*/
/*        left: 1100px;*/
/*    }*/
    
/*    .erp-free-trial-content span::after{*/
/*        position: absolute;*/
/*        content: "";*/
         /*top: 90%; */
/*        right: 0;*/
/*        left: 1200px;*/
/*    }*/
    
/*    .erp-faq-content span::after{*/
/*        position: absolute;*/
/*        content: "";*/
         /*top: 90%; */
/*        right: 0;*/
/*        left: 1190px;*/
/*    }*/
/*}*/



/* HRMS Hero Section */
.hero-hrms-section {
  min-height: 80vh;
  display: flex;
  align-items: center;

  /* Background */
  background: url("assets/img/hrms-bg.jpg") center/cover no-repeat;

  color: #fff;
}

.hrms-hero-content h1 {
  font-size: 76px;
  font-weight: 700;
  padding-bottom: 10px;
  width: 70%;
}

.hrms-hero-content p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hrms-hero-content h1 {
    font-size: 30px;
  }
}
/* end */


/* Hero HRMS Features Section */
.hero-hrms-section{
    padding: 60px 0px;
    font-size: 53px;
    color: #6d007b;
}

.hrms-features {
  padding: 80px 0;
  background: #f6f7fb;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #2c2c2c;
}

.section-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 12px auto 50px;
  color: #666;
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6d007b, #9b1fae);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card * {
  position: relative;
  z-index: 1;
}

.feature-card .icon {
  font-size: 36px;
  display: inline-block;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card:hover h4,
.feature-card:hover p,
.feature-card:hover .icon {
  color: #ffffff;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* end */



/* HRMS Demo Section */
.grid-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

/* Make the submit button full width */
.grid-form .full-width {
  grid-column: 1 / -1;
}

.hrms-demo-section {
  padding: 60px 0;
  background: #f6f7fb;
}

.staff-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-weight: 600;
}

.staff-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 110px;
  height: 3px;
  background-color: #ff8c00; /* orange */
  border-radius: 2px;
}

.hrms-demo-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #4a004f;
  text-align: center;
  margin-bottom: 40px;
}

.hrms-wrapper {
  display: flex;
  gap: 30px;
}

.hrms-left {
  background: #6d007b;
  border-radius: 20px;
  padding: 30px;
}

.hrms-feature-list {
  display: none;
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.hrms-feature-list.show {
  display: block;
}

.hrms-feature-list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: all 0.25s ease;
}

.hrms-feature-list.show {
  display: block !important;
}

.hrms-feature-list li {
  cursor: pointer;
  padding: 10px 12px;
}

.hrms-feature-list li.active {
  background: #ff8c00;
  color: #fff;
}

.hrms-dropdown-btn {
  width: 100%;
  padding: 10px;
  cursor: pointer;
  background-color: #f9f9f9;
  border: none;
  text-align: left;
  border-radius: 10px;
}

.hrms-dropdown-btn:hover {
  background-color: #eee;
}

.hrms-feature-list li i {
  margin-right: 10px;
}

.hrms-feature-list li.active,
.hrms-feature-list li:hover {
  background: rgba(255,255,255,0.2);
}

.hrms-right{
    flex: 0 0 auto;
    width: 72% !important;
    background: #f1f1f1;
    padding: 10px 15px;
    border-radius: 10px;
}

.hrms-right .hrms-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.mt-30 {
  margin-top: 30px;
}

.hrms-card h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #4a004f;
}

.hrms-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.hrms-form input,
.hrms-form select,
.hrms-form textarea {
  width: 85%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-left: 20px;
  background: #ffffff;
}

.hrms-form textarea {
  height: 80px;
  resize: none;
  margin-left: 22px;
}

.btn-submit {
  background: #6d007b;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  width: 14%;
  margin-left: 25px;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.btn-add {
  background: #4a004f;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
}

.hrms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.hrms-table th,
.hrms-table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.btn-edit {
  background: #ffc107;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
}

.btn-delete {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
}

/* Chart */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dashboard-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dashboard-card canvas {
  width: 100% !important;
  height: 260px !important;
}


@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hrms-wrapper {
    flex-direction: column;
  }
}
/* end */