  :root {

    /* ================= CRM ================= */
    --crm-primary-gradient: linear-gradient(90deg, #15706f 0%, #25bfbc 100%);
    --crm-primary: #0f5152;
    --crm-main: #25bfbc;
    --crm-purple: #25bfbc;
    --crm-dark: #111;

    --crm-white-08: rgba(255, 255, 255, 0.08);
    --crm-white-10: rgba(255, 255, 255, 0.10);
    --crm-white-12: rgba(255, 255, 255, 0.12);
    --crm-white-18: rgba(255, 255, 255, 0.18);

    --crm-radius-lg: 24px;
    --crm-radius-md: 18px;
    --crm-transition: all 0.35s ease;


    /* ================= CLAIM ================= */
    --claim-primary-gradient: linear-gradient(90deg, #7a3ff2 0%, #9b59ff 100%);
    --claim-purple: #8b5cf6;
    --claim-dark: #111;

    --claim-white-08: rgba(255, 255, 255, 0.08);
    --claim-white-10: rgba(255, 255, 255, 0.10);
    --claim-white-12: rgba(255, 255, 255, 0.12);
    --claim-white-18: rgba(255, 255, 255, 0.18);

    --claim-radius-lg: 24px;
    --claim-radius-md: 18px;
    --claim-transition: all 0.35s ease;


    /* ================= DIGISME ================= */
    --ds-primary: #1F3966;
    --ds-blue: #1d2a4d;
    --ds-yellow: #f5b41d;
    --ds-light: #f4f6fd;
    --ds-light-gray: #e5e8ee;
    --ds-gray: #344054;
    --ds-black: #1a1919;
    --ds-white: #ffffff;

    /* ================= Leave Software ================= */
    --leave-bg: #C0F4E7;
    --leave-dark: #0F172A;
    --leave-primary: #0F766E;
    --leave-accent: #14B8A6;


    /* ================= HOME GRADIENT ================= */
    --home-gradient:
      radial-gradient(circle at top left,
        rgba(37, 191, 188, .18),
        transparent 28%),

      radial-gradient(circle at top right,
        rgba(0, 153, 255, .14),
        transparent 30%),

      radial-gradient(circle at bottom center,
        rgba(37, 191, 188, .10),
        transparent 35%),

      linear-gradient(135deg,
        #040b14 0%,
        #091523 20%,
        #10253b 45%,
        #163956 70%,
        #1b4c6d 100%);


    /* ================= FONT WEIGHTS ================= */
    --ds-fw-400: 400;
    --ds-fw-500: 500;
    --ds-fw-600: 600;
    --ds-fw-700: 700;
    --ds-fw-800: 800;
    --ds-fw-900: 900;


    /* ================= FONT SIZES ================= */
    --ds-fs-14: 14px;
    --ds-fs-16: 16px;
    --ds-fs-18: 18px;
    --ds-fs-20: 20px;
    --ds-fs-22: 22px;
    --ds-fs-24: 24px;
    --ds-fs-28: 28px;
    --ds-fs-32: 32px;
    --ds-fs-36: 36px;
    --ds-fs-42: 42px;

  }

  @font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    src: url("../fonts/NunitoSans.ttf");
  }

  body {
    font-family: Nunito Sans, sans-serif !important;
    color: #323232;
    min-height: 100vh;
    -webkit-overflow-scrolling: touch;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  main {
    flex-grow: 1;
  }

  p {
        line-height: 1.8;
    font-weight: 500;
  }

  /* =========================================================
   COMMON UTILITIES
   ========================================================== */

  .glass-effect {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  section .display-4 {
    font-size: 36px;
  }

  .ds-primary {
    color: var(--ds-primary);
  }

  .ds-gray-light {
    background-color: var(--ds-light-gray);
  }

  .ds-light {
    background-color: var(--ds-light);
  }

  .ds-white {
    background-color: var(--ds-white);
  }

  .ds-yellow-text {
    color: var(--ds-yellow);
  }

  .ds-green-text {
    color: var(--crm-main);
  }

  .ds-bg-gray {
    background-color: var(--ds-gray);
  }

  .cta-section {
    background: radial-gradient(circle at top, rgba(34, 117, 255, 0.18), transparent 30%), linear-gradient(90deg, #071c36 0%, #031221 45%, #0a3a67 100%);
  }

  .ds-footer {
    padding: 50px 0px 15px;
  }

  .ds-footer .container {
    /* max-width: 1200px; */
  }

  .ds-footer-social {
    margin-bottom: 40px;
    padding-bottom: 80px;
    border-bottom: 1px solid #ffffff33;
    justify-content: center;
    align-items: center;
  }

  .ds-icon {
    width: 20px;
    height: 20px;

    min-width: 20px;
    padding-left: 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    flex-shrink: 0;
  }

  @keyframes floatShape {
    0% {
      transform: translateY(0) rotate(0deg);
    }

    50% {
      transform: translateY(-15px) rotate(8deg);
    }

    100% {
      transform: translateY(0) rotate(0deg);
    }
  }

  /* ===================================================
FONT WEIGHTS
=================================================== */

  .ds-fw-400 {
    font-weight: 400;
  }

  .ds-fw-500 {
    font-weight: 500;
  }

  .ds-fw-600 {
    font-weight: 600;
  }

  .ds-fw-700 {
    font-weight: 700;
  }

  .ds-fw-800 {
    font-weight: 800;
  }

  .ds-fw-900 {
    font-weight: 900;
  }

  /* ===================================================
COMMON HEADING STYLES
=================================================== */

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    padding: 0;
    line-height: 1.3;
  }

  h1 {
    font-size: 44px;
    font-weight: 800;
  }

  h2 {
    font-size: 36px;
    font-weight: 700;
  }

  h3 {
    font-size: 30px;
    font-weight: 700;
  }

  h4 {
    font-size: 24px;
    font-weight: 700;
  }

  h5 {
    font-size: 20px;
    font-weight: 600;
  }

  h6 {
    font-size: 18px;
    font-weight: 600;
  }

  @media (min-width: 1600px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
      max-width: 1200px;
    }
  }

  section {
    padding: 70px 0;
  }

  section.ds-banner {
    padding: 0;
  }

  /* ===================================================
RESPONSIVE
=================================================== */

  @media (max-width: 991px) {

    h1 {
      font-size: 42px;
    }

    h2 {
      font-size: 32px !important;
    }

    h3 {
      font-size: 26px;
    }

    h4 {
      font-size: 22px;
    }
  }

  @media (max-width: 767px) {

    h1 {
      font-size: 32px;
      line-height: 1.4;
    }

    h2 {
      font-size: 28px !important;
      line-height: 1.4;
    }

    h3 {
      font-size: 24px;
    }

    h4 {
      font-size: 20px;
    }

    h5 {
      font-size: 18px;
    }

    h6 {
      font-size: 16px;
    }

    section {
      padding: 40px 0;
    }

    .cta-section{
      padding-top: 40px;
    }
    
  }

  /* =========================================================
   COMMON FLOATING SHAPES
   ========================================================== */

  .feature-shape,
  .floating-shape,
  .mi-product-swiper-slider .shape {
    position: absolute;
    z-index: 0;
    animation: floatShape 7s ease-in-out infinite;
  }

  .shape-one,
  .floating-square {
    width: 110px;
    height: 110px;
    border-radius: 28px;
    background: var(--crm-white-08);
    backdrop-filter: blur(10px);
    transform: rotate(25deg);
  }

  .shape-two,
  .floating-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--crm-white-12);
  }

  .shape-three,
  .floating-diamond {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: var(--crm-white-10);
    transform: rotate(45deg);
  }

  .shape-one {
    top: 90px;
    right: 7%;
  }

  .shape-two {
    bottom: 80px;
    left: 6%;
  }

  .shape-three {
    top: 45%;
    left: 12%;
  }

  /******************Icon Group***************************/
  .ds-check-circle {
    background-image: url("../img/icons/ds-check-circle.svg");
  }

  .ds-check-blue-circle {
    background-image: url("../img/icons/field-circle-check.svg");
  }

  .ds-check-outline-circle {
    background-image: url("../img/icons/check_outline.png");
    background-repeat: no-repeat;
  }

  .ds-check-square{
      background-image: url("../img/icons/check-square.svg");
      background-repeat: no-repeat;
  }

  .ds-check-voilet{
      background-image: url("../img/icons/Check_voilet.svg");
      background-repeat: no-repeat;
  }

  .ds-check-purple{
  background-image: url("../img/icons/purple-check.svg");
      background-repeat: no-repeat;
  }


  .ds-calendar-light {
    background-image: url("../img/icons/ds-calendar-light.svg");
  }

  .ds-map-light {
    background-image: url("../img/icons/ds-map-light.svg");
  }

  .ds-phone {
    background-image: url("../img/icons/ds-phone.svg");
  }

  .ds-mail {
    background-image: url("../img/icons/ds-mail.svg");
  }

  .ds-facebook {
    background-image: url("../img/icons/ds-facebook.svg");
  }

  .ds-linkedin {
    background-image: url("../img/icons/ds-linkedin.svg");
  }

  .ds-youtube {
    background-image: url("../img/icons/ds-youtube.svg");
  }

  .ds-instagram {
    background-image: url("../img/icons/ds-instagram.svg");
  }

  .double-quotes-blue {
    background: url(../img/icons/double-quotes-orange.svg) no-repeat;
  }

  .icon-auto-salary-processing {
    background: url(../img/icons/ds-auto-salary-processing.svg) no-repeat;
  }

  .icon-statutory-compliance {
    background: url(../img/icons/ds-statutory-compliance.svg) no-repeat;
  }

  .icon-stay-compliant {
    background: url(../img/icons/stay-complaint.svg) no-repeat;
  }

  .icon-attendance-integration {
    background: url(../img/icons/ds-attendance-integration.svg) no-repeat;
  }

  .payroll-feature-box:hover .icon-auto-salary-processing {
    background: url(../img/icons/ds-auto-salary-processing-white.svg);
  }

  .payroll-feature-box:hover .icon-statutory-compliance {
    background: url(../img/icons/ds-statutory-compliance-white.svg);
  }

  .payroll-feature-box:hover .icon-attendance-integration {
    background: url(../img/icons/ds-attendance-integration-white.svg);
  }

  /******************Icon Group***************************/

  /* ===================================================
BUTTONS
=================================================== */

  .ds-schedule-btn {
    background: var(--ds-yellow);
    color: var(--ds-black);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
    box-shadow: 0 10px 30px rgba(245, 180, 29, .25);
    border: 1px solid var(--ds-yellow);
  }

  .ds-schedule-btn:hover {
    transform: translateY(-4px);
    color: var(--ds-black);
  }


  .ds-watch-btn {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 28px;
    border-radius: 50px;

    border: 1px solid rgba(255, 255, 255, .12);

    background: rgba(255, 255, 255, .05);

    backdrop-filter: blur(10px);

    color: #fff;
    text-decoration: none;

    transition: .3s ease;
  }

  .ds-watch-btn span {
    width: 24px;
    height: 24px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .12);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 10px;
  }

  .ds-watch-btn:hover {
    background: #414243;
    color: #fff;
  }

  /* =========================================================
   CRM HERO SECTION
   ========================================================== */

  .mi-banner-crm-software {
    position: relative;
    overflow: hidden;
    margin: auto;
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 30%),
      linear-gradient(135deg, #072122 0%, #0d4a4b 40%, #146d6d 100%);
    box-shadow:
      0 10px 40px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }

  .mi-banner-crm-software::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(107, 105, 105, 0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(123, 121, 121, 0.1) 1px, transparent 1px);
    background-size: 70px 70px;
  }

  .mi-banner-crm-software p {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    text-align: justify;
  }

  .mi-banner-crm-software h2 {
    font-size: 24px;
    font-weight: 700;
  }

  .mi-banner-crm-software .home-logo-shadow::before,
  .mi-banner-crm-software .home-logo-shadow::after {
    display: none;
  }

  .crm-ai-feature-section {
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 30%),
      linear-gradient(135deg, #072122 0%, #0d4a4b 40%, #146d6d 100%);
    overflow: hidden;
  }

  .mi-crm-gradient-works {
    overflow: hidden;
    border-radius: 15px;
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 30%),
      linear-gradient(135deg, #072122 0%, #0d4a4b 40%, #146d6d 100%);
  }

  .crm-integration-sofware-cta .container {
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 30%),
      linear-gradient(135deg, #072122 0%, #0d4a4b 40%, #146d6d 100%);
    overflow: hidden;
    border-radius: 20px;
    padding: 15px;
  }

  /* =========================================================
   CRM BUTTON
========================================================== */

  .crm-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--crm-transition);
  }

  .crm-btn:hover {
    background: #fff;
    color: #25bfbc;
    text-decoration: none;
  }

  .crm-btn span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #25bfbc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
  }

  .best-crm-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    border-radius: 60px;
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 30%),
      linear-gradient(135deg, #072122 0%, #0d4a4b 40%, #146d6d 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.3px;
    transition: var(--crm-transition);
    box-shadow: 0 18px 40px #1fa5a555;
  }

  .best-crm-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 40px #1fa5a555;
    color: #fff;
  }

  .best-crm-btn:focus {
    outline: none;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(122, 63, 242, 0.15);
  }


  /* =========================================================
   CRM FEATURE CARD
========================================================== */

  .crm-feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 10px 40px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    height: 300px;
  }

  .crm-feature-card:hover {
    transform: translateY(-10px);
  }

  .feture-link-box a{
      position: relative;
  }

  .feture-link-box h4 a::after{
    content: "";
    background-image: url(../img/feature-link.svg);
        width: 14px;
    height: 14px;
    background-size: 14px;
    position: absolute;
    right: -18px;
    top: 5px;
    background-repeat: no-repeat;

  }

  .crm-feature-image {
    position: relative;
    padding: 20px;
  }

  .crm-feature-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.35),
      0 0 40px rgba(31, 165, 165, 0.25);
  }

  .crm-feature-content {
    padding: 20px;
    text-align: center;
  }

  .crm-feature-card .icon-box {
    width: 65px;
    height: 65px;
    margin: auto;
    border-radius: 18px;
    background: linear-gradient(135deg, #1fa5a5 0%, #146d6d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(20, 109, 109, 0.45);
    position: relative;
    z-index: 2;
  }

  .crm-feature-card .icon-box i {
    display: block;
    width: 40px;
    height: 40px;
    background-size: 40px;
    margin: 0 auto;
  }

  .crm-feature-card .crm-feature-content h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 15px;
  }

  .crm-feature-card .crm-feature-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 16px;
  }

  @media (max-width: 767px) {
    .crm-feature-card .crm-feature-content {
      padding: 20px;
    }
  }


  /* =========================================================
   CRM FEATURES SECTION
========================================================== */

  .crm-features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }

  .crm-features-section .feature-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 20px;
    border-radius: 20px;
    background: #f7f7f7;
    transition: var(--crm-transition);
    box-shadow: 0 -1px 0 rgb(0 0 0 / 5%);
    text-align: center;
  }

  .crm-features-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  }

  .crm-features-section .feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.4s;
    background: linear-gradient(135deg, rgba(122, 63, 242, 0.06), transparent);
  }

  .crm-features-section .feature-card:hover::before {
    opacity: 1;
  }

  .crm-features-section .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: var(--crm-purple);
  }

  .crm-features-section .icon-box svg {
    width: 26px;
    height: 26px;
    fill: #fff;
  }

  .crm-features-section .feature-card h4 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
  }

  .crm-features-section .feature-card p {
    font-size: 16px;
    line-height: 1.9;
  }

  .crm-features-section .feature-image img,
  .crm-features-section .wide-image img {
    width: 100%;
    display: block;
  }

  .crm-features-section .wide-card {
    grid-column: span 2;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .crm-features-section .wide-content,
  .crm-features-section .wide-image {
    width: 50%;
  }

  /* =========================================================
    WORKFLOW BOX
    ========================================================== */

  .workflow-box {
    border-radius: 12px;
    padding: 50px 20px;
    border: 8px solid #06abaf;
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 30%),
      linear-gradient(135deg, #072122 0%, #0d4a4b 40%, #146d6d 100%);
  }

  .workflow-steps .step {
    background: #ffffff;
    color: #1c3b6f;
    padding: 10px 18px;
    margin: 0 6px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    opacity: .9;
    border-radius: 20px;
  }

  /* =========================================================
    CRM INTEGRATION SECTION
    ========================================================== */

  .crm-integration-section {
    background:
      radial-gradient(circle at top left, rgba(20, 109, 109, 0.08), transparent 30%),
      linear-gradient(135deg, #f5fffd 0%, #ecfdfc 45%, #d8f6f1 100%);
  }

  .crm-integration-section .lead {
    font-size: 18px;
    line-height: 1.9;
  }

  .crm-integration-section .best-crm-btn {
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 30%),
      linear-gradient(135deg, #072122 0%, #0d4a4b 40%, #146d6d 100%);
    color: #fff;
    border: 0;
    padding: 15px 32px;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(20, 109, 109, 0.35);
    transition: 0.3s ease;
  }

  .crm-integration-section .best-crm-btn:hover {
    transform: translateY(-4px);
    color: #fff;
  }

  .crm-integration-icon {
    width: 85px;
    height: 85px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 7px;
    transition: 0.4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .crm-integration {
    border: 5px solid #06abaf;
    border-radius: 10px;
    padding: 10px 0;
  }

  .crm-integration-icon:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgb(255, 255, 255);
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.28),
      0 0 25px rgba(31, 165, 165, 0.35);
  }

  .crm-integration-icon img {
    width: 60px;
    height: auto;
    object-fit: contain;
  }

  /* =========================================================
   CRM WORKFLOW SECTION
   ========================================================== */

  .crm-workflow-section {
    position: relative;
    padding: 110px 0;
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 30%),
      linear-gradient(135deg, #072122 0%, #0d4a4b 40%, #146d6d 100%);
    overflow: hidden;
  }

  .crm-workflow-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  }

  .crm-workflow-section .zigzag-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .crm-workflow-section .zigzag-item {
    padding: 10px;
  }

  .crm-workflow-section .zigzag-card .icon {
    width: 60px;
    height: 60px;
    background: transparent;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .crm-workflow-section .zigzag-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #f6b719;
    font-weight: bold;
  }

  .crm-workflow-section .zigzag-card p {
    color: #fff;
    line-height: 1.6;
  }

  /* =========================================================
   CRM STATS SECTION
   ========================================================== */

  .crm-stats-section .cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    min-width: 220px;
  }

  .crm-stats-section .stat-card {
    position: relative;
    overflow: hidden;
    padding: 35px;
    border-radius: var(--crm-radius-md);
    text-align: center;
    background: var(--crm-primary-gradient);
    transition: var(--crm-transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 3px 3px 8px rgb(0 0 0 / 40%);
  }

  .crm-stats-section .stat-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--crm-white-08);
  }

  .crm-stats-section .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .crm-stats-section .stat-card h3,
  .crm-stats-section .stat-card p {
    color: #fff;
    font-weight: bold;
  }

  .crm-stats-section .stat-card h3 {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .crm-stats-section .stat-card p {
    margin: 0;
  }

  .mi-crm-package {
    background: #f8fbfb;
    padding: 100px 0;
    position: relative;
    overflow: hidden;

  }

  .mi-crm-packag .container {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 3px 3px 8px rgb(0 0 0 / 40%);
  }

  .crm-compare-table {
    border-collapse: separate;
    border-spacing: 0 12px;

  }


  .crm-compare-table thead th {
    padding: 22px 18px;
    font-size: 20px;
    font-weight: 800;
    border: 0;
    vertical-align: middle;
  }

  .crm-compare-table thead th:first-child {
    border-radius: 18px 0 0 18px;
  }

  .crm-compare-table thead th:last-child {
    border-radius: 0 18px 18px 0;
  }

  .crm-compare-table tbody tr {
    transition: all 0.35s ease;
  }

  .crm-compare-table tbody tr:hover {
    transform: translateY(-4px);
  }

  .crm-compare-table td {
    padding: 24px 20px;
    vertical-align: middle;
    border-top: 0;
  }

  .crm-compare-table td:first-child {
    border-radius: 18px 0 0 18px;
  }

  .crm-compare-table td:last-child {
    border-radius: 0 18px 18px 0;
  }

  .crm-highlight-col {
    background: linear-gradient(180deg, #e8fffd 0%, #d7f8f6 100%) !important;
    box-shadow: inset 0 0 0 2px #25bfbc22;
  }

  .crm-feature-highlight td {
    position: relative;
  }

  .crm-feature-highlight td::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(37, 191, 188, 0.2);
    pointer-events: none;
  }

  .crm-best-badge {
    background: #25bfbc;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 9px;
    position: relative;
    top: -12px;
  }


  /* =========================================================
   RESPONSIVE
   ========================================================== */

  @media (min-width: 768px) {
    .mi-banner-crm-software .mi-cient-logos .slick-slide img {
      width: 120px;
      height: 55px;
      margin: 0 0 65px;
      object-fit: contain;
    }
  }

  @media (max-width: 991px) {

    .crm-integration-section {
      padding: 70px 0;
    }

    .crm-features-section .features-grid {
      grid-template-columns: repeat(1, 1fr);
    }

    .mi-crm-package {
      padding: 70px 0;
    }

    .crm-compare-table {
      min-width: 900px;
    }

    .mi-crm-feature .workflow-steps .step {
      margin-bottom: 15px;
    }

    .crm-stats-section .cta-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

  }

  @media (max-width: 768px) {

    .crm-workflow-section .zigzag-wrapper::before {
      display: none;
    }

    .crm-workflow-section .zigzag-item {
      width: 100%;
      margin: 0;
    }
  }

  @media (max-width: 767px) {

    .crm-integration-section h2 {
      font-size: 30px;
    }

    .crm-integration-icon {
      width: 40px;
      height: 40px;
      margin: 8px;
    }

    .crm-integration-icon img {
      width: 25px;
    }

    .crm-compare-table thead th {
      font-size: 16px;
      padding: 16px;
    }

    .crm-compare-table td {
      padding: 18px 14px;
    }

    .crm-best-badge {
      font-size: 10px;
    }

  }

  /*******************************CRM Sofware End******************************************************/
  /*******************************CRM Software Integration *******************************************/
  /* =========================================================
   CRM software integration HERO SECTION
========================================================== */

  .mi-crm-software-integration-banner {
    position: relative;
    overflow: hidden;
    margin: auto;
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 30%),
      linear-gradient(135deg, #072122 0%, #0d4a4b 40%, #146d6d 100%);
    box-shadow:
      0 10px 40px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }

  .mi-crm-software-integration-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(107, 105, 105, 0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(123, 121, 121, 0.1) 1px, transparent 1px);
    background-size: 70px 70px;
  }

  .mi-crm-software-integration-banner .sub-badges {
    font-weight: 500;
    font-size: 14px;
    background: #ffffff4a;
    border-radius: 12px;
    padding: 5px 15px;
    margin-bottom: 10px !important;
    text-transform: uppercase;
  }

  .mi-software-integration-banner {
    background: var(--crm-primary-gradient);

  }

  .integration-section {
    padding: 60px 0;
    background: radial-gradient(circle at top left, rgba(20, 109, 109, 0.08), transparent 30%), linear-gradient(135deg, #f5fffd 0%, #ecfdfc61 45%, #d8f6f142 100%);
  }

  .integration-card {
    background: #fff;
    border: 1px solid rgb(245 241 241);
    box-shadow: -1px 2px 9px rgb(0 0 0 / 7%);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: 0.3s;
  }

  .integration-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    cursor: pointer;
  }

  .integration-logo {
    height: 60px;
  }

  .integration-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
  }

  .integration-desc {
    font-size: 15px;
    color: #6b7280;
  }

  /*******************************CRM Software Integration END*******************************************/

  /*******************************Claim Software Start **************************************************/
  /* =========================================================
     Claim HERO SECTION
  ========================================================== */

  .mi-banner-claim-software {
    position: relative;
    overflow: hidden;
    margin: auto;
    padding-bottom: 40px;
    background: var(--claim-primary-gradient);
  }

  .mi-banner-claim-software::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
    background-size: 70px 70px;
  }

  .mi-banner-claim-software p {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    text-align: justify;
  }

  .mi-banner-claim-software .home-logo-shadow::before,
  .mi-banner-claim-software .home-logo-shadow::after {
    display: none;
  }

  /* =========================================================
     Claim BUTTON
  ========================================================== */

  .claim-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 0px 25px;
    line-height: 45px;
    border-radius: 6px;
    background: #0B6E6E;
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: 0px;
    text-decoration: none;
    transition: var(--claim-transition);
  }

  .claim-btn:hover {
    background: #0B6E6E;
    color: #ffffff;
    text-decoration: none;
  }

  /* .claim-btn span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
  } */

  .best-claim-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, .12);
    background-image: linear-gradient(135deg, #7a3ff2 0%, #9f67ff 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .3px;
    transition: var(--claim-transition);
    box-shadow:
      0 10px 30px rgba(122, 63, 242, .35),
      inset 0 1px 0 rgba(255, 255, 255, .2);
  }

  .best-claim-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 40px rgba(122, 63, 242, .45);
  }

  .best-claim-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(122, 63, 242, .15);
  }

  /* =========================================================
     CLAIM FEATURE SECTION
  ========================================================== */

  /* .claim-features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .claim-features-section .feature-card {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    padding: 30px;
    border-radius: 20px;
    background: #f7f7f7;
    transition: var(--claim-transition);
    box-shadow: 0 -1px 0 rgb(0 0 0 / 5%);
  }

  .claim-features-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
  }

  .claim-features-section .feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: .4s;
    background: linear-gradient(135deg,
        rgba(122, 63, 242, .06),
        transparent);
  }

  .claim-features-section .feature-card:hover::before {
    opacity: 1;
  }

  .claim-features-section .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: var(--claim-purple);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .claim-features-section .icon-box svg {
    width: 26px;
    height: 26px;
    fill: #fff;
  }

  .claim-features-section .feature-card h4 {
    margin-bottom: 10px;
    color: var(--claim-purple);
    font-size: 24px;
    font-weight: 700;
  }

  .claim-features-section .feature-card p {
    font-size: 16px;
    line-height: 1.9;
  }

  .claim-features-section .feature-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 75%;
    transform: translateX(-50%);
  }

  .claim-features-section .feature-image img,
  .claim-features-section .wide-image img {
    width: 100%;
    display: block;
  }

  .claim-features-section .wide-card {
    grid-column: span 2;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .claim-features-section .wide-content,
  .claim-features-section .wide-image {
    width: 50%;
  } */

  /* =========================================================
     Claim KEY FEATURES SECTION
  ========================================================== */

  .claim-software-key-features {
    position: relative;
    overflow: hidden;
    background: linear-gradient(255.59deg, #E0F5F5 0%, #DBF8E3 100%);
  }

  .claim-software-key-features::before,
  .claim-software-key-features::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }

  .claim-software-key-features::before {
    width: 350px;
    height: 350px;
    top: -140px;
    left: -120px;
    background: var(--claim-white-08);
    filter: blur(20px);
  }

  .claim-software-key-features::after {
    width: 280px;
    height: 280px;
    bottom: -120px;
    right: -100px;
    background: rgba(255, 255, 255, .06);
    filter: blur(10px);
  }

  .claim-software-key-features .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    /* padding-bottom: 40px; */
  }

  .claim-tradition-cards h3{
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .claim-tradition-cards p, .build-content-sec p{
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
  }

  .build-in-main{
    border: 1px solid #DBE8FB;
    border-radius: 12px;
  }

  .build-content-sec{
    padding: 16px 24px 30px 24px;
  }

  .build-india-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  .build-content-sec h3{
     font-size: 18px;
    font-weight: 800;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .build-in-img{
    background: linear-gradient(96.78deg, #E6F7F1 0%, #C6EDE0 100%);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    text-align: center;
    padding: 15px 0;

  }

  .claim-tradition-cards .cm-step-icon{
    margin-bottom: 30px;
  }

  .claim-app-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .claim-content-card{
      border: 1px solid #DBE8FB;
      border-radius: 12px;
      padding: 30px 20px;
  }
 

  .claim-software-key-features .feature-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    border-radius: var(--claim-radius-lg);
    color: #fff;
    background: #0B6E6E;
    border: 1px solid rgba(255, 255, 255, .25) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: var(--claim-transition);
    text-align: center;
  }

  .claim-software-key-features .feature-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--claim-white-08);
  }

  .claim-software-key-features .feature-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    cursor: pointer;
  }

  .claim-software-key-features .feature-card img {
    border-radius: 12px;
  }

  .claim-software-key-features .feature-card .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }

  .ds-claim-traditional .card {
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.038);
    transition: var(--claim-transition);
  }

  .ds-claim-traditional .card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    cursor: pointer;
  }

  .ds-claim-regulatory .card {
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.038);
    transition: var(--claim-transition);
    height: 200px;
  }

  .ds-claim-regulatory .card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    cursor: pointer;
  }

  /* CTA Button */
  .claim-white-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 25px;
    line-height: 45px;
    background: #FFF;
    border: 0px;
    color: #0B6E6E; 
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  .claim-white-btn:hover {
    transform: translateY(-4px);
    color: #0B6E6E;
  }

  .cta-trust-txt{
    margin-top: 34px;
  }

  .claim-dark-cta-section .claim-stats {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .claim-dark-cta-section .lead{
font-size: 16px;
  }

  .claim-dark-cta-section .claim-stats {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .claim-dark-cta-section .claim-stat-card {
    /* background: rgba(255, 255, 255, 0.95); */
    min-width: 170px;
    padding: 8px 20px;
    border-radius: 16px;
    text-align: center;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    backdrop-filter: blur(8px);
    transition: all .35s ease;
    cursor: pointer;
    position: relative;
  }

  /* Hover Effect */
  .claim-dark-cta-section .claim-stat-card:hover {
    /* transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18); */
  }

  .claim-dark-cta-section .claim-stat-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
  }

  .claim-dark-cta-section .claim-stat-card p {
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
  }



  /* =========================================================
     Claim PRODUCT VIDEO SLIDER
  ========================================================== */

  .mi-product-swiper-slider {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #FFF;
  }

  .mi-product-swiper-slider::before,
  .mi-product-swiper-slider::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
  }

  .mi-product-swiper-slider::before {
    width: 320px;
    height: 320px;
    top: -120px;
    left: -80px;
    background: rgba(255, 255, 255, .18);
  }

  .mi-product-swiper-slider::after {
    width: 280px;
    height: 280px;
    bottom: -120px;
    right: -60px;
    background: rgba(255, 215, 0, .18);
  }

  .mi-product-swiper-slider .shape1 {
    width: 120px;
    height: 120px;
    top: 80px;
    right: 8%;
    border-radius: 30px;
    background: var(--claim-white-08);
    transform: rotate(25deg);
  }

  .mi-product-swiper-slider .shape2 {
    width: 80px;
    height: 80px;
    bottom: 100px;
    left: 8%;
    border-radius: 50%;
    background: var(--claim-white-12);
  }

  .mi-product-swiper-slider .shape3 {
    width: 60px;
    height: 60px;
    top: 45%;
    left: 4%;
    background: rgba(255, 255, 255, .15);
    transform: rotate(45deg);
  }

  .mi-product-swiper-slider .container {
    position: relative;
    z-index: 2;
  }

  .mi-product-swiper-slider .swiper-button-next,
  .mi-product-swiper-slider .swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
    top: 60% !important;
  }

  .mi-product-swiper-slider .swiper-button-prev,
  .mi-product-swiper-slider .swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
    top: 60% !important;
  }

  /* =========================================================
    Claim CTA SECTION
  ========================================================== */

  /* .cta-claim-ocr {
    position: relative;
    padding: 100px 0;
  }

  .cta-claim-ocr .container {
    position: sticky;
    top: 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    margin-bottom: 120px;
    overflow: hidden;
    isolation: isolate;
    border-radius: 20px;
    background: var(--claim-primary-gradient);
    transition: all .6s ease;
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
      0 10px 40px rgba(0, 0, 0, .056),
      inset 0 1px 0 rgba(255, 255, 255, .08);
    padding: 30px;
  }

  .cta-claim-ocr .container:last-child {
    margin-bottom: 0;
  }

  .cta-claim-ocr .container.collapsed {
    transform: translateY(-50%) scale(.78);
    opacity: .4;
    filter: blur(10px);
  }

  .cta-claim-ocr .container::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--claim-white-08);
    filter: blur(10px);
    z-index: -1;
  }

  .cta-claim-ocr .container::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 40px;
    transform: rotate(25deg);
    z-index: -1;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, .12),
        rgba(255, 255, 255, .02));
  }

  .cta-claim-ocr ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .cta-claim-ocr ul li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 42px;
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
  }

  .cta-claim-ocr ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #FFD54F, #FFB300);
    box-shadow: 0 4px 12px rgba(255, 193, 7, .35);
  }

  .cta-claim-ocr ul li::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 15px;
    width: 10px;
    height: 5px;
    border-left: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: rotate(-45deg);
  } */

  /* =========================================================
     Claim STATS SECTION
  ========================================================== */

  /* .claim-stats-section .cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    min-width: 220px;
  }

  .claim-stats-section .stat-card {
    position: relative;
    overflow: hidden;
    padding: 35px;
    border-radius: var(--claim-radius-md);
    text-align: center;
    background: var(--claim-primary-gradient);
    transition: var(--claim-transition);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 3px 3px 8px rgb(0 0 0 / 40%);
  }

  .claim-stats-section .stat-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--claim-white-08);
  }

  .claim-stats-section .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
  }

  .claim-stats-section .stat-card h3,
  .claim-stats-section .stat-card p {
    color: #fff;
    font-weight: bold;
  }

  .claim-stats-section .stat-card h3 {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .claim-stats-section .stat-card p {
    margin: 0;
  } */

  /* =========================================================
   DARK CLAIM CTA SECTION
========================================================= */

  .claim-dark-cta-section {
    position: relative;
    overflow: hidden;
    background: #0B6E6E;
  }
/* Optional Glow Shapes */
  .claim-dark-cta-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
  }

 .claim-dark-cta-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    bottom: -100px;
    left: -80px;
  }


  .claim-dark-cta-section .claim-dark-image img {
    width: 100%;
  }

  /* Tag */

  .claim-dark-cta-section .claim-dark-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c4b5fd;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
  }

  /* Heading */

  .claim-dark-cta-section .claim-dark-title {
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
  }

  /* Description */

  .claim-dark-cta-section .claim-dark-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 30px;
  }

  /* List */

  .claim-dark-cta-section .claim-dark-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .claim-dark-cta-section .claim-dark-list li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 18px;
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
  }

  /* Tick Box */

  .claim-dark-cta-section .claim-dark-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.35);
  }

  /* Tick */

  .claim-dark-cta-section .claim-dark-list li::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 13px;
    width: 9px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
  }

  /* Button */

  .claim-dark-cta-section .claim-dark-btn {
    padding: 14px 32px;
    border-radius: 14px;
    background: #fff;
    color: #111827;
    font-weight: 600;
    font-size: 16px;
    border: none;
    transition: 0.4s ease;
  }

  .claim-dark-cta-section .claim-dark-btn:hover {
    transform: translateY(-4px);
    background: #8b5cf6;
    color: #fff;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.35);
  }

  .ds-banner-claim-software {
    position: relative;
    overflow: hidden;
    margin: auto;
    padding-bottom: 40px;
        background: linear-gradient(96.78deg, #E6F7F1 0%, #C6EDE0 100%);
  }

  .ds-claim-software-label {
    border: 1px solid #0B6E6E33;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    color: #0B6E6E;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    background: #CCF0E7;
  }

  .claim-hero-sec p{
    font-size: 18px;
    line-height: 30px;
  }

  .ds-banner-claim-software .expense-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .ds-banner-claim-software .expense-feature-list li {
   
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    color: #0B1F3B;
    font-weight: 500;
    display: flex;
    align-items: center;

  }

  .ds-banner-claim-software .expense-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0B6E6E;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }

  .claim-features-m p{
    font-size: 14px;
    line-height: 22px;
    margin-top: 5px;
  }

  .cm-why-choose {
    position: relative;
    padding: 70px 0;
    background: #0B6E6E;
    overflow: hidden;
  }

  

  /* Content */
  .cm-why-choose .container {
    position: relative;
    z-index: 2;
  }

  .cm-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
  }

  .cm-title {
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .cm-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
  }

  /* Image */
  .cm-why-image {
    position: relative;
  }

  .cm-why-image img {
    width: 100%;
  }

  /* Cards */
  .cm-why-card {
    background: rgba(255, 255, 255, 0.997);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    border-radius: 12px;
    padding: 15px;
    display: block;
    gap: 10px;
    height: 100%;
    transition: 0.4s ease;
  }

  .cm-why-card:hover {
    transform: translateY(-8px);
    background: rgb(255, 255, 255);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  }


  .cm-why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #050505;
    margin-bottom: 10px;
  }

  .cm-why-card p {
    margin: 0;
    color: rgba(0, 0, 0, 0.82);
    font-size: 14px;
    line-height: 24px;
  }

  .cm-process-section {
    background: #ffffff;
  }



  .cm-process-section .cm-title {
    font-weight: 700;
    color: #0b1f3b;
    margin-bottom: 15px;
  }

  .cm-process-section .cm-subtitle {
    max-width: 760px;
    margin: auto;
    color: #5b6574;
    font-size: 16px;
    line-height: 1.8;
  }

  .cm-process-section .cm-step-card {
    position: relative;
    background: #fff;
    height: 100%;
    overflow: hidden;
  }

  .cm-process-section .cm-step-count {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 52px;
    font-weight: 800;
    color: #8a5cf638;
    line-height: 1;
  }

  .cm-process-section .cm-step-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
  }

  .cm-process-section .cm-step-icon i {
    color: #fff;
    font-size: 30px;
  }

  .cm-process-section .cm-step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
  }

  .cm-process-section .cm-step-card p {
    color: #5c6675;
    line-height: 26px;
    margin: 0;
  }

  .claim-primary {
    color: #0B6E6E;
  }

  .claim-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .claim-pill {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #BFE0D1;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #2F3B3B;
    line-height: 1.4;
    width: 94%;
  }

  .claim-check {
    min-width: 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
  }

  .claim-check i {
    font-size: 14px;
    color: #fff;
  }

  .claim-hero-sec h1{
    font-size: 44px;
    line-height: 1.15;
  }

  /* =========================================================
     FAQ SECTION
  ========================================================== */



  /* =========================================================
     RESPONSIVE
  ========================================================== */

  @media (max-width: 991px) {
    .cm-process-section .cm-step-card {
      padding:24px;
    }

    .tablet-center-align{
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: center;
      text-align: center;
    }

    .ds-banner-claim-software .expense-feature-list{
          grid-template-columns: repeat(3, 1fr);
          justify-items: center;
    } 

    .claim-hero-sec h1{
      font-size: 42px;
    }

    .build-india-grid,  .claim-app-grid{
      grid-template-columns: repeat(2, 1fr);
    }

    .claim-app-grid .claim-content-card:last-child{
      grid-column: -1 / 1;
      justify-self: center;
      width: 330px;
    }
    
    
    .claim-pill{
      width: fit-content;
    }

     .ds-banner-claim-software .expense-feature-list li:last-child{
      grid-column: -1/1;
      justify-items: center;
     }

    .cm-title {
      font-size: 34px;
    }

    .cm-why-image {
      margin-bottom: 20px;
    }

    .claim-features-section .features-grid,
    .claim-software-key-features .feature-grid {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .claim-dark-cta-section .claim-stat-card{
      min-width: 140px;
    }

    .claim-trad-card{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .claim-trad-card .card:last-child{
        grid-column: -1 / 1;
        justify-self: center;
        width: 370px;
    }

    .claim-reverse-col-sec{
      display: flex;
     flex-direction: column-reverse; 
    }

    .ds-claim-traditional h2, .ds-claim-traditional h2{
      text-align: center;
    }

    .ds-banner-claim-software{
      padding-bottom: 0;
    }

  }

  @media (max-width: 767px) {
    .cm-process-section .cm-title {
      font-size: 30px;
    }

    .ds-banner-claim-software{
      padding-bottom: 0;
    }

    .claim-app-grid, .build-india-grid{
      grid-template-columns: repeat(1, 1fr);
    }

    .cm-process-section .cm-step-card h3 {
      font-size: 21px;
    }

      .claim-hero-sec h1{
      font-size: 32px;
    }

    .ds-appraisal-hero .ds-performance-content h1 span{
      display: block;
    }

    .ds-appraisal-hero .ds-performance-content h1{
      line-height: 1.15;
    }

    .ds-appraisal-hero .ds-performance-content p{
      font-size: 14px !important;
      line-height: 1.9 !important;
    }

  

    .ds-appraisal-hero .ds-performance-btns{
      margin-bottom: 24px !important;
    }

    .cm-process-section .cm-step-count {
      font-size: 42px;
    }

    .mi-banner-claim-software {
      padding-top: 40px;
    }

    .mi-banner-claim-software h1 {
      font-size: 34px;
      line-height: 1.3;
    }

    .mi-banner-claim-software p {
      font-size: 16px;
      text-align: left;
    }

    .cm-why-choose {
      padding: 70px 0;
    }

    .cm-title {
      font-size: 28px;
    }

    .cm-why-card {
      padding: 22px;
    }


    .cm-why-card h3 {
      font-size: 18px;
    }

   .claim-reverse-col-sec {
        display: flex;
        flex-direction: column;
    }

   .ds-banner-claim-software .expense-feature-list {
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
    }

    .claim-hero-sec p{
    font-size: 14px; 
    line-height: 1.9;
  }

  .field-hero-head span{
      display: block;
  }

  .field-hero-head{
     line-height: 42px !important;
  }

    .ds-banner-claim-software .expense-feature-list li:last-child{
      grid-column: auto;
    }

    .claim-features-section .features-grid, .claim-software-key-features .feature-grid, .claim-trad-card{
      grid-template-columns: 1fr;
    }

    .claim-trad-card .card:last-child {
        grid-column: -1 / 1;
        justify-self: center;
        width: 100%;
    }

    .cm-process-section .cm-step-icon{
      margin-bottom: 12px;
    }

  }

  /* @media (max-width: 600px) {

    .claim-features-section .feature-card {
      padding: 30px 24px;
    }

    .claim-features-section .feature-card h3 {
      font-size: 24px;
    }

    .claim-features-section .feature-card p {
      font-size: 14px;
    }
  } */

  @media (min-width: 768px) {

    .mi-banner-claim-software .mi-cient-logos .slick-slide img {
      width: 120px;
      height: 55px;
      margin: 0 0 65px;
      object-fit: contain;
    }
  }

  /******************************************Claim Software End *************************************/

  /* ===================================================
HERO SECTION
=================================================== */

  /* .ds-home-hero-section {
    position: relative;
    overflow: hidden;
    background: var(--home-gradient);
    padding-bottom: 0 !important;
  } */
  .ds-home-hero-section {
    position: relative;
    overflow: hidden;
    background: url('../../contents/images/home-banner-bg.webp') center center/cover no-repeat;
    padding-bottom: 0 !important;
  }

  /* .ds-home-hero-section::after {
    content: "";
    position: absolute;

    left: 50%;
    bottom: -52px;

    transform: translateX(-50%);

    width: 100%;
    height: 120px;

    background: #000;

    filter: blur(50px);
  }

  .ds-home-hero-section .hero-grid {
    position: absolute;
    inset: 0;

    background-image:
      linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);

    background-size: 60px 60px;

    z-index: 0;
  } */

  .ds-home-hero-section .hero-content {
    position: relative;
    z-index: 2;

    max-width: 1024px;

    margin: 0 auto 40px;
  }

  .ds-home-hero-section .hero-content h1 {
    color: #fff;
    font-size: 44px;
    line-height: 1.3;
    font-weight: 600;

    margin-bottom: 24px;
  }

  .ds-home-hero-section .hero-content h1 span {
    font-weight: 800;

    margin-bottom: 24px;
  }

  .ds-home-hero-section .hero-content p {
    /* max-width: 760px; */
    margin: auto;
    color: rgb(255 255 255 / 93%);
    font-size: 18px;
    line-height: 1.9;
  }

  .ds-home-hero-section .hero-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
  }

  .ds-watch-btn {
   background: rgba(116, 163, 219, 0.2);
    color: #fff;
    border: 0;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ds-watch-btn:hover {
    background: #ffffff36;
    backdrop-filter: blur(18px);
    transform: translateY(-4px);      
  }

  .video-dropdown .dropdown-menu {
    min-width: 180px;
    border-radius: 12px;
    padding: 10px;
    border: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .video-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
  }

  .video-dropdown .dropdown-item:hover {
    background: #f5f7ff;
  }

  .ds-home-hero-section .dashboard-image {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
  }

  .ds-home-hero-section .dashboard-image::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 70%;
    height: 120px;
    background: var(--crm-main);
    filter: blur(50px);
    opacity: .28;
    z-index: -1;
  }

  .ds-home-hero-section .dashboard-image img {
    width: 100%;
  }

  /* .ds-home-hero-section .hero-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
  }

  .ds-home-hero-section .shape-glow {
    width: 320px;
    height: 320px;
    top: -100px;
    right: -80px;
    border-radius: 50%;
    background:
      radial-gradient(circle,
        rgba(37, 191, 188, .35) 0%,
        rgba(37, 191, 188, .12) 45%,
        transparent 75%);
    filter: blur(20px);
    animation: floatGlow 8s ease-in-out infinite;
  }

  .ds-home-hero-section .shape-ring {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 28px solid rgba(255, 255, 255, .06);
    bottom: 40px;
    left: -60px;
    backdrop-filter: blur(8px);
    animation: rotateRing 16s linear infinite;
  }

  .ds-home-hero-section .shape-wave {
    width: 500px;
    height: 500px;
    background:
      linear-gradient(135deg,
        rgba(255, 255, 255, .04),
        rgba(255, 255, 255, .01));
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    top: 20%;
    left: 35%;
    filter: blur(8px);
    animation: morphWave 12s ease-in-out infinite;
  }

  .ds-home-hero-section .shape-grid {
    width: 140px;
    height: 140px;
    right: 18%;
    bottom: 8%;
    border-radius: 24px;
    background:
      linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 18px 18px;
    background-color: rgba(255, 255, 255, .03);
    backdrop-filter: blur(12px);
    transform: rotate(12deg);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, .03),
      0 20px 40px rgba(0, 0, 0, .12);
  }

  @keyframes floatGlow {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-20px);
    }
  }

  @keyframes rotateRing {
    from {
      transform: rotate(0);
    }

    to {
      transform: rotate(360deg);
    }
  }

  @keyframes morphWave {

    0%,
    100% {
      border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
      transform: translate(0, 0) rotate(0);
    }

    50% {
      border-radius: 60% 40% 30% 70% / 55% 30% 70% 45%;
      transform: translate(20px, -20px) rotate(8deg);
    }
  } */

  /* ===================================================
Home SMART PLATFORM SECTION
=================================================== */

  .smart-home-platform-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;

    background:
      linear-gradient(180deg, #f7f8fe 0%, #f4f6fd 100%);
  }

  .smart-home-platform-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
      radial-gradient(circle at 10% 20%,
        rgba(99, 102, 241, .04) 0%,
        transparent 22%),
      radial-gradient(circle at 90% 10%,
        rgba(37, 191, 188, .04) 0%,
        transparent 24%),
      repeating-radial-gradient(circle at top center,
        transparent 0,
        transparent 28px,
        rgba(99, 102, 241, .035) 29px,
        transparent 30px);
    background-size:
      100%,
      100%,
      1400px 500px;
    background-position: center;
    z-index: 0;
  }

  .smart-home-platform-section .container {
    position: relative;
    z-index: 2;
  }

  .smart-home-platform-section .smart-platform-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    box-shadow:
      0 2px 10px rgba(0, 0, 0, .03);
    padding: 15px;
  }

  .smart-home-platform-section .heading-area {
    margin-bottom: 45px;
  }

  .smart-home-platform-section .heading-area h2 {
    font-weight: 700;
    color: #1d2a4d;

    margin-bottom: 12px;
  }

  .smart-home-platform-section .heading-area p {
    font-size: 16px;
    color: #667085;
    max-width: 890px;
    margin: auto;
    line-height: 1.8;
  }

  .smart-home-platform-section .feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dde1ea;
  }

  .smart-home-platform-section .feature-header span {
    color: var(--ds-black);
    font-weight: var(--ds-fw-600);
  }

  .smart-home-platform-section .feature-header a {
    text-decoration: none;
    font-weight: var(--ds-fw-600);
    font-size: var(--ds-fs-14);
    color: #1d2a4d;
  }

  .smart-home-platform-section .feature-box {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
  }

  .smart-home-platform-section .icon-box {
    min-width: 42px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .smart-home-platform-section .feature-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1d2a4d;
    margin-bottom: 5px;
  }

  .smart-home-platform-section .feature-box a {
    font-size: 16px;
    font-weight: 700;
    color: #1d2a4d;
    margin-bottom: 5px;
    text-decoration: none;
  }

  .smart-home-platform-section .feature-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #38393c;
    margin: 0;
  }

  /* ===================================================
Home  CRM SECTION
=================================================== */

  .crm-home-workflow-card h2 {
    font-weight: 700;
    line-height: 1.3;

    color: #1d2a4d;

    margin-bottom: 20px;
  }

  .crm-home-workflow-card .crm-description {
    font-size: 15px;
    line-height: 1.9;

    color: #667085;

    margin-bottom: 30px;
  }

  .crm-points{
    display: grid;

  }

  .crm-home-workflow-card .crm-pill {
   display: inline-flex;
    align-items: center;
    padding: 4px 18px;
    margin-bottom: 14px;
    border-radius: 50px;
    background: #F1F3E9;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .04);
    font-size: 14px;
    font-weight: 700;
    color: var(--ds-black);
    transition: .3s ease;
    gap: 10px;
    width: fit-content;
    line-height: 30px;
  }

  .crm-home-workflow-card .crm-pill:hover {
    transform: translateX(6px);
  }

  .crm-home-workflow-card .crm-btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 38px;
    border-radius: 50px;
    background: #146d6d;
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 10px;
  }

  .crm-home-workflow-card .crm-btn-dark:hover {
    background: #123f42;
    color: #fff;

    transform: translateY(-2px);
  }

  /* ===================================================
TRUST SECTION
=================================================== */

  .trust-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
      radial-gradient(circle at top, rgba(34, 117, 255, 0.18), transparent 30%),
      linear-gradient(90deg, #071c36 0%, #031221 45%, #0a3a67 100%);
  }

  /* CENTER LIGHT EFFECT */
  .trust-section::before {
    content: "";
    position: absolute;
    width: 850px;
    height: 850px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
      radial-gradient(circle,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 35%,
        transparent 70%);
    z-index: 0;
  }

  /* RADAR CIRCLE */
  .trust-radar {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 0;
  }

  .trust-radar::before,
  .trust-radar::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .trust-radar::before {
    inset: 70px;
  }

  .trust-radar::after {
    inset: 140px;
  }

  .trust-radar::after {
    inset: 210px;
  }

  .trust-section .trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
  }

  .trust-section .trust-card {
    position: relative;

    padding: 25px 12px;

    border-radius: 9px;

    text-align: center;

    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, .14) 0%,
        rgba(255, 255, 255, .05) 100%);

    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(18px);

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .12),
      0 20px 50px rgba(0, 0, 0, .28);

    transition: .4s ease;

    will-change: transform;
  }

  .trust-section .trust-card:hover {
    transform: translateY(-10px);
  }

  .trust-section .trust-icon {
    width: 85px;
    height: 85px;

    margin: 0 auto 26px;

    border-radius: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, .12) 0%,
        rgba(255, 255, 255, .03) 100%);

    border: 1px solid rgba(255, 255, 255, .08);
  }

  .trust-section .trust-icon img {
    width: 40px;
    height: 40px;

    object-fit: contain;

    /* filter: brightness(0) invert(1); */
  }

  .trust-section .trust-card h3 {
    color: #f6b719;

    font-size: 28px;
    font-weight: 800;
  }

  .trust-section .trust-card h4,
  .trust-section .trust-card h5 {
    color: #fff;
    font-size: 16px;
    font-weight: var(--ds-fw-600);
  }

  /* ===================================================
CUSTOMER STORIES
=================================================== */

  .customer-story-section {
    background: #fff;
    position: relative;
    overflow: hidden;
  }

  .customer-story-section .customer-story-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .customer-story-section .story-card {
    position: relative;
    overflow: hidden;

    border-radius: 18px;

    height: 100%;

    cursor: pointer;

    transition: .4s ease;

    box-shadow:
      0 10px 30px rgba(0, 0, 0, .08);

    will-change: transform;
  }

  .customer-story-section .story-card:hover {
    transform: translateY(-8px);
  }

  .customer-story-section .story-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s ease;
  }

  .customer-story-section .story-card:hover img {
    transform: scale(1.05);
  }

  .customer-story-section .story-overlay {
    position: absolute;
    inset: 0;

    background:
      linear-gradient(to top,
        rgba(0, 0, 0, .75) 0%,
        rgba(0, 0, 0, .15) 55%,
        rgba(0, 0, 0, .08) 100%);
  }

  .customer-story-section .play-btn {
    position: absolute;

    left: 24px;
    bottom: 90px;

    width: 52px;
    height: 52px;

    border-radius: 16px;

    backdrop-filter: blur(12px);

    background: rgba(255, 255, 255, .14);

    border: 1px solid rgba(255, 255, 255, .25);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
  }

  .customer-story-section .story-content {
    position: absolute;

    left: 24px;
    bottom: 24px;

    z-index: 2;
  }

  .customer-story-section .story-content h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
  }

  .customer-story-section .story-content p {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    margin: 0;
  }

  /* ===================================================
UTILITY
=================================================== */

  .mi-home-testimonials h2,
  .mi-home-business-logos p,
  .customer-story-section .section-title h2 {
    color: #1d2a4d;
  }


  .ds-events .slide-container {
    width: 100%;
    padding: 20px 0;
  }

  .ds-events .card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: 0.3s ease;
    height: auto;
  }

  .ds-events .card a:hover {
    text-decoration: none;
    cursor: pointer;
  }

  .ds-events .card:hover {
    transform: translateY(-5px);
  }


  .ds-events .image-content {
    position: relative;
  }

  .ds-events .image-content img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
  }

  .ds-events .card .image-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 19%) 5%, rgb(0 0 0 / 19%) 45%, rgb(0 0 0 / 18%) 100%);
    z-index: 1;
  }

  .ds-events .event-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #fff;
    color: #1d2b53;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }

  .ds-events .play-button {
    z-index: 2;
    background: #fff;
  }

  .ds-events .card-content {
    padding: 18px;
  }

  .ds-events .name {
    font-size: 16px !important;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.5rem;
    cursor: default;
    color: var(--ds-primary);
  }

  .ds-events .event-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #595a5d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .ds-events .event-info i {
    color: #9ca3af;
    margin-top: 4px;
    font-size: 12px;
  }

  /* SWIPER SPACING */
  .swiper-slide {
    height: auto;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .name {
      font-size: 18px;
    }

    .event-info p {
      font-size: 14px;
    }

    .image-content img {
      height: 190px;
    }
  }

  .video-dropdown {
    position: relative;
    display: inline-block;
  }

  .popover-lang {
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
    /* Left side of button */
    transform: translateY(-50%);
    display: none;
    width: 140px;
    min-width: 140px;
    background: #f6b719;
    border-radius: 4px;
    z-index: 9999;
  }

  .popper-arrow {
    position: absolute;
    top: 50%;
    right: -6px;
    width: 12px;
    height: 12px;
    background: #f6b719;
    transform: translateY(-50%) rotate(45deg);
  }

  .popover-lang a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }

  .popover-lang a:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .popover-lang a:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
  }


  .yt-popup .modal-body {
    position: relative;
    padding: 0;
  }

  .yt-popup .close {
    position: absolute;
    right: -30px;
    top: 0;
    z-index: 9999;
    color: #fff;
    opacity: 1;
    font-size: 32px;
  }

  .yt-popup .modal-content {
    background: transparent;
    border: none;
  }

  @media (max-width: 991px) {

    .popover-lang {
      top: calc(100% + -30px) !important;
      right: 0;
      left: auto;
      transform: none;
    }

    .popper-arrow {
      top: -6px;
      right: 20px;
      left: auto;
      transform: rotate(45deg);
    }

    .video-dropdown {
      margin: 15px 0;
      text-align: center;
    }

    /* #watchVideoBtn {
      margin-bottom: 30px;
    } */

  }



  .ds-footer {
    background: #36435b;
    color: #fff;
    padding-top: 35px;
  }



  .ds-footer hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
  }

  /* REVIEW */
  .ds-footer .footer-review {
    /* display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap; */

    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .ds-footer .footer-review img{
    height: 42px;
  }

  .ds-footer .review-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .ds-footer .review-item img {
    width: 100%;
    align-items: center;
    justify-content: center;
  }


  .ds-footer .review-item span {
    font-size: 14px;
    color: #dfe5f2;
  }

  /* MAIN GRID */
  .ds-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
  }

  .ds-footer .footer-logo {
    width: 120px;
    margin-bottom: 18px;
  }

  .ds-footer .footer-col p {
    color: #d6dbe7;
    line-height: 1.7;
    font-size: 14px;
  }

  .ds-footer .footer-col h4,
  .ds-footer .link-col h4,
  .ds-footer .footer-location h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #fff;
  }

  /* SOCIAL */
  .ds-footer .social-icons {
    display: flex;
    gap: 12px;
  }

  .ds-footer .social-icons a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
  }

  .ds-footer .social-icons a:hover {
    background: #f5b301;
    color: #000;
  }

  /* APP STORE */
  .ds-footer .store-btns {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 10px;
  }

  .ds-footer .store-btns img {
    width: 100px;
  }

  /* LINKS */
  .ds-footer .footer-links {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 2fr;
    gap: 40px;
  }

  .ds-footer .link-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .ds-footer .link-col ul li {
    margin-bottom: 12px;
  }

  .ds-footer .link-col ul li a {
    color: #d7dceb;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
  }

  .ds-footer .link-col ul li a:hover {
    color: #f5b301;
    padding-left: 4px;
  }

  .cta-content-sec{
    font-size: 16px;
  }

  /* CERTIFICATION */
  .ds-footer .cert-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
  }

  .ds-footer .cert-box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #FFF;
    border-radius: 12px;
    padding: 5px;
  }

  .ds-footer .cert-box p {
    margin: 0;
    color: #d7dceb;
    font-size: 14px;
    line-height: 1.6;
  }

  /* LOCATION */
  .ds-footer .footer-location {
    margin-top: 35px;
  }

  .ds-footer .footer-location p {
    color: #d7dceb;
    line-height: 1.8;
    margin-bottom: 10px;
  }

  .ds-footer .footer-location a {
    color: #f5b301;
    text-decoration: none;
    font-weight: 600;
  }

  /* BOTTOM */
  .ds-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 18px 0;
  }

  .ds-footer .footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .ds-footer .footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #cfd5e2;
  }

  .ds-footer .bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
  }

  .ds-footer .bottom-links a {
    color: #cfd5e2;
    text-decoration: none;
    font-size: 14px;
  }

  .ds-footer .bottom-links a:hover {
    color: #f5b301;
  }

  /* RESPONSIVE */
  @media(max-width: 992px) {

    .ds-footer .footer-grid,
    .ds-footer .footer-links {
      grid-template-columns: 1fr 1fr;
    }

     .ds-footer .footer-review{
        grid-template-columns: 1fr 1fr 1fr;         
    }
     .mobile-top-margin{
      margin-top: 40px;
     }

     .footer-links .link-col:last-child{
      grid-column: 1/-1;
      justify-items: start;
     }

     .ds-footer .footer-bottom-flex{
      justify-content: center;
     }

     
  }

  @media(max-width: 767px) {

  .ds-footer .footer-review img{
    height: 30px;
  }


    .ds-footer .footer-review{
       grid-template-columns: 1fr 1fr;
       row-gap: 24px;
    }
    .footer-review .review-item:last-child{ 
      grid-column: 1/-1;
      justify-items: start;
    }

    .ds-footer .footer-grid,
    .ds-footer .footer-links {
      grid-template-columns: 1fr;
      flex-direction: column;
      align-items: flex-start;
    }

   

    .ds-footer .footer-bottom-flex {
      flex-direction: column;
      text-align: center;
    }
  }

  /* ===================================================
RESPONSIVE
=================================================== */

  @media (max-width: 991px) {

   
    .ds-home-hero-section .hero-content h1 {
      font-size: 42px;
    }

    .trust-section .trust-grid,
    .customer-story-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .crm-pill {
      width: 100%;
    }

    .ds-home-google-testimonials .slider-card-body {
      min-height: 365px;
    }

    
  .trust-md-center:last-child{
    grid-column: 1/-1;
    justify-self: center;
    width: 300px;
  }

  .cta-section{
    padding-top: 40px !important;
  }

 
  

  .platform-image{
    position: relative;
    padding-top: 400px;
    overflow: hidden;
    border-radius: 18px;
    margin-top: 24px;
  }

  .platform-image .img-fluid{
    position: absolute;
    bottom: -140px;
    object-fit: cover;
  } 

  .reverse-col-sec{
    display: flex;
    flex-direction: column-reverse;
  }

  .center-text-sec{
    text-align: center;
  }

  .cta-padd-top .justify-content-end{
    justify-content: center !important;
    
  } 
  
  .ds-field-benefits .row:last-child{
    margin-bottom: 0 !important;
  }
  
 .ds-field-benefits {
    background: #185FA5;
    padding: 70px 0px 70px !important;
    position: relative;
}

  }

  @media (max-width: 767px) {

     .ds-field-benefits {
    background: #185FA5;
    padding: 50px 0px 50px !important;
    position: relative;
}

    .ds-home-business-logos .ds-cient-logos .slick-slide img{
      margin-bottom: 25px !important;
    }

    .platform-image {
        padding-top: 250px;
    }

    .platform-image .img-fluid {
        position: absolute;
        object-fit: cover;
        bottom: -50px;
    }

    .trust-section .trust-grid{
      grid-template-columns: 100%;
    }

    .trust-md-center:last-child {
        justify-self: center;
        width: 100%;
    }

    .mobile-margin-bottom{
      margin-bottom: 20px !important;
    }

    .text-md-center{
      text-align: center;
    }

    .trust-section-mobile{
      background-size: 260% !important;
      background-position: bottom !important;
      background-color: #193853 !important;
      background: none;
    }

    /* .trust-section-mobile::after{
      content: "";
      background: url(../../contents/images/trust-bg.webp);
      width: 100%;
      height: 100%;
      background-repeat: no-repeat;
      background-size: 100%;
      position: absolute;
      bottom: 0;
    } */

    .payroll-hero-content h1{
      font-size: 32px !important;
      display: block;
      line-height: 1.4 !important;
    }

    .payroll-hero-content h1 span{
      display: block;
    }

    .ds-home-hero-section .hero-content h1 {
      font-size: 32px;
      line-height: 1.4;
    }

    .ds-home-hero-section .hero-content p,
    .crm-description,
    .heading-area p {
      font-size: 14px;
    }

    .hero-btn-group {
      flex-direction: column;
    }

    .smart-home-platform-section,
    .trust-section,
    .customer-story-section {
      padding: 40px 0;
    }

    .trust-grid,
    .customer-story-grid {
      grid-template-columns: 1fr;
    }

    .story-card {
      height: 380px;
    }

    .crm-home-workflow-card .crm-pill {
      width: fit-content !important;
    }
  }

  /***********************Employee Field Tracking Software**********************/
  section.mi-field-tracking-software-banner {
    padding: 60px 0px;
  }

  section.mi-field-tracking-software-banner h1 {
    color: #1f3966;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 16px;
  }

  section.mi-field-tracking-software-banner h1 span{
    font-weight: 800;
  }

  section.mi-field-tracking-software-banner p{
    line-height: 30px;
  }

  section.mi-field-tracking-software-banner .badge {
    font-size: 13px !important;
    font-family: Nunito Sans;
    font-weight: 700;
  }


  .ds-field-tracking-software .badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px !important;
    margin-bottom: 25px;
    color: #185FA5 !important;
    border: 2px solid transparent;
    background: #E0F4FF;
    box-shadow: 0 3px 10px rgba(125, 166, 255, 0.25);
    border: 1px solid #185FA540;
  }

  .mi-field-tracking-software-banner {
    background: url(../../contents/images/field-tracking-banner.webp) no-repeat;
    background-size: cover;
  }

  .ds-field-benefits {
    background: #185FA5;
    padding: 80px 0px 155px;
    position: relative;
  }

  .ds-report-overview .lead {
    font-size: 16px;
  }

  .ds-field-benefits::before {
   content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100%;
    left: -40px;
    bottom: -110px;
  }

  /* Right curved shape */
  .ds-field-benefits::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    /* right: -120px; */
    top: -100px;
    display: none;
  }

  .mi-appraisal ul li::before, .mi-apps ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #344054;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: none;
  }

  .ds-field-benefits .benefits-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .ds-field-benefits .benefits-content p {
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .ds-field-benefits .btn-demo {
    border-radius: 8px;
    padding: 0px 22px;
    line-height: 45px;
        font-weight: 700;
    color: #185FA5;
  }

  .ds-field-benefits .benefit-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
  }

  .benefit-card h5{
        font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
  }

  .ds-field-benefits .benefit-card:hover {
    transform: translateY(-5px);
  }

  .ds-field-benefits .icon-box {
    width: 50px;
    height: 50px;
    background: #e8f2ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f5fb7;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .ds-field-benefits.benefit-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .ds-field-benefits .benefit-card p {
        color: #323232;
    margin: 0;
    line-height: 24px;
    font-size: 14px;
    font-weight: 500;
  }

  .ds-field-benefits .row:last-child {
    margin-bottom: -120px;
  }

  @media(max-width:767px) {
    .ds-field-benefits .benefits-content {
      margin-bottom: 30px;
    }

    .ds-field-benefits .benefits-content h2 {
      font-size: 32px;
    }

    
  }

  .ds-field-tracking-cta {
    background: #185FA5;
    overflow: hidden;
    position: relative;
  }

  .ds-field-tracking-cta::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    left: -130px;
    bottom: -50px;
  }

  /* Right curved shape */
  .ds-field-tracking-cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    right: -120px;
    top: -100px;
  }

  .ds-field-tracking-cta .field-stats {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .ds-field-tracking-cta .field-stats {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .ds-field-tracking-cta .field-stat-card {
        /* background: rgba(255, 255, 255, 0.95); */
    min-width: 150px;
    padding: 8px 20px;
    border-radius: 16px;
    text-align: center;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    backdrop-filter: blur(8px);
    transition: all .35s ease;
    cursor: pointer;
    position: relative;
  }

  .ds-field-tracking-cta .field-stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
  }



  .ds-field-tracking-cta .field-stat-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
  }

  .ds-field-tracking-cta .field-stat-card p {
     margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
  }

  /* CTA Button */
  .field-white-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 25px;
    line-height: 45px;
    background: #FFF;
    border: 0px;
    color: #185FA5;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  .field-white-btn:hover {
    transform: translateY(-4px);
    color: #185FA5;
  }


  .features-staff-tracking {
    padding: 80px 0;
  }

  .features-staff-tracking h2 {
    font-weight: 700;
    color: #111;
  }

  .features-staff-tracking p {
       color: #323232;
    line-height: 1.8;
    font-weight: 500;
  }

  .features-staff-tracking .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .features-staff-tracking .feature-list li {
         margin-bottom: 16px;
    font-weight: 500;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .ds-field-tracking-cta p{
    font-size: 16px;
  }

  .features-staff-tracking.feature-list li i {
    color: #0d5cab;
    margin-right: 10px;
  }

  @media(max-width:991px) {

    .ds-field-benefits::after{
      right: 0; 
    }

    .section.mi-field-tracking-software-banner h1{
      font-size: 42px;
    }

    .claim-hero-sec p{
      text-align: center;
    }

    .ds-field-tracking-feature .lead{
      font-size: 16px;
      margin-top: 16px;
    }

    .benefits-content{
      margin-bottom: 30px;
    }

    .logistics-tabmobil{           
        padding: 10px 30px;  
    }
    

     .mi-text-dark {
        font-size: 16px !important;
    }

    .mi-report-content{
      margin-bottom: 16px;
    }


    .features-staff-tracking .col-lg-6 {
      margin-bottom: 40px;
    }
  }

  .log-tab-nav{
    row-gap: 16px;
  }

  .mi-field-tracking-software-banner h1 span {
    color: #185FA5;
  }

  .ds-field-tracking-software .wave {
    display: block;
    width: 100%;
    line-height: 0;
    margin-bottom: -2px;
  }

  .ds-field-btn {
    border: none;
    cursor: pointer;
    padding: 0px 22px;
    border-radius: 6px;
    line-height: 45px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
    background: #185FA5;
    box-shadow: 0 10px 25px rgba(16, 119, 218, 0.25);
  }

  .ds-field-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 119, 218, 0.35);
  }




  .mi-bg-light-yellow {
    background: #FCF7DF;
  }

  .mi-field-feature .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom: 40px
  }

  .mi-field-feature h4 {
    font-weight: bold;
  }

  .mi-field-feature .feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: 0.3s;
    padding: 2rem 1.5rem;
    z-index: 1;
    border: 0;
    box-shadow: rgba(37, 49, 56, 0.08) 0px 12px 16px -4px, rgba(37, 49, 56, 0.03) 0px 4px 6px -2px;
    border-radius: 25px;
  }

  .mi-field-feature.feature-card img {
    border-radius: 12px;
  }

  .mi-field-feature .feature-card:hover {
    color: #fff;
    transform: translateY(-6px);
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    cursor: pointer;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
  }

  .mi-field-feature .feature-card .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    border-radius: 12px;
    font-size: 30px;
    margin-bottom: 15px;
    box-shadow: rgb(37 49 56 / 11%) 4px 4px 10px 0px, rgb(37 49 56 / 0%) 0px 4px 6px -2px;
  }

  .mi-field-feature .field-benefits-steps h4 {
    font-weight: bold;
  }

  .mi-staff-tracking {
    background: linear-gradient(to bottom, #010046, #00124f, #062058, #122c5f, #1f3966);
  }

  .ds-field-tracking-feature .feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .ds-field-tracking-feature .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .ds-field-tracking-feature .feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: #0d5cab;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }

  .ds-field-tracking-feature .feature-content h5 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
  }

  .ds-field-tracking-feature .feature-content p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
  }

  @media (max-width: 767px) {
    .ds-field-tracking-feature .feature-content h5 {
      font-size: 18px;
    }

    .ds-field-tracking-feature .feature-content p {
      font-size: 14px;
    }

    .ds-report-overview .nav-tabs{
      column-gap: 16px;
    }
     

    .logistic-tab-list .logistics-tabmobil{
      padding: 0 !important;
    }

    .ds-field-benefits{
          padding: 50px 0px 50px;
    }

    .ds-field-benefits .row:last-child{
      margin-bottom: 0;
    }

    section.mi-field-tracking-software-banner {
    padding: 50px 0px;
}

    .features-staff-tracking{
      padding-bottom: 50px !important; 
    }

    .ds-field-tracking-feature .feature-icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      font-size: 18px;
    }
  }

  @media(max-width:900px) {
    .mi-field-feature .feature-grid {
      grid-template-columns: 1fr;
    }

    .field-benefits li:not(:last-child) {
      position: relative;
      margin-bottom: 100px;
    }

    .field-benefits li:nth-child(1)::after,
    .field-benefits li:nth-child(3)::after,
    .field-benefits li:nth-child(5)::after,
    .field-benefits li:nth-child(2)::after,
    .field-benefits li:nth-child(4)::after {
      display: none;

    }
  }

  .mi-staff-tracking .feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
  }

  .mi-staff-tracking .badge-card {
    background: #ffffff;
    border: 1px solid #e5e8f0;
    padding: 8px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #1f3966;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
  }

  .mi-staff-tracking .badge-card:hover {
    background: #1f3966;
    color: #fff;
    transform: translateY(-2px);
    cursor: pointer;
  }

  .ds-report-overview .nav-tabs {
    border-bottom: none;
    justify-content: center;
  }

  .ds-report-overview .nav-tabs .nav-link {
    font-weight: 600;
    padding: 12px 26px;
    margin: 0 6px;
    border: 1px solid #185FA5;
    border-radius: 50px;
    background: #ffffff;
    color: #185FA5;
    transition: all 0.3s ease;
    /* margin-bottom: 20px; */
  }

  .ds-report-overview .nav-tabs .nav-link:hover {
    background: #ffffff;
    border-color: #cfcfcf;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    color: #000;
  }

  .logistic-tab-list ul li{
font-size: 16px;
  }

   .logistic-tab-list ul{
    margin-bottom: 0;
   }

  .ds-report-overview .nav-tabs .nav-link.active {
    color: #fff !important;
    border-color: #185FA5;
    box-shadow: 0px 4px 12px rgba(1, 46, 94, 0.35);
    /* background: linear-gradient(135deg, #0b296b, #300b6f); */
    background: #185FA5;
  }

  .ds-field-tracking-software .mi-google-testimonials .slider-card-body {
    min-height: 320px;
    padding: 13px 18px !important;
    background: #F5F5F5;
    border-radius: 20px;
    box-shadow: rgba(37, 49, 56, 0.08) 0px 12px 16px -4px, rgba(37, 49, 56, 0.03) 0px 4px 6px -2px;
    border-radius: 25px;
    border: 1px solid #185FA5;
    background: #f6faff;
  }

  .ds-field-tracking-software .mi-google-testimonials .card-text {
    text-align: left;
    color: #002b54;
    font-weight: 600;
    font-size: 16px;
    margin: 0 10px;
  }

  .ds-field-tracking-software .mi-google-testimonials .card-title {
    color: #1f3966;
    font-weight: 700;
  }

  .ds-field-tracking-software .mi-google-testimonials .company-text {
    color: #1f3966;
  }

  .ds-field-tracking-software .dsds-primary-google-profile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ededed;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    user-select: none;
    background: transparent linear-gradient(319deg, #0f31b4 0%, #000c39 100%) 0% 0% no-repeat padding-box;
  }

  .ds-field-tracking-software .double-quotes {
    display: block;
    width: 42px;
    height: 42px;
    background-size: 42px !important;
  }

  .ds-field-tracking-software .mi-google-testimonials .card {
    background-color: #ffffff00;
  }

  .ds-report-overview .mi-report-img img {
    border-radius: 15px;
  }

  @media (max-width: 576px) {
    .ds-report-overview .nav-tabs .nav-link {
      /* margin-bottom: 15px; */
      width: 100%;
      text-align: center;
    }

    .field-benefits li:nth-child(1)::after,
    .field-benefits li:nth-child(3)::after,
    .field-benefits li:nth-child(5)::after,
    .field-benefits li:nth-child(2)::after,
    .field-benefits li:nth-child(4)::after {
      display: none;

    }

    .smart-home-platform-section .feature-box{
      gap: 5px;
    }

    .field-benefits li:not(:last-child) {
      position: relative;
      margin-bottom: 50px !important;
    }

    section.mi-field-tracking-software-banner {
      text-align: center;
    }

    .mi-google-testimonials .slider-card-body {
      min-height: 430px;
    }
  }

  @media(max-width:600px) {
    .mi-field-feature .feature-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 767px) {
    .ds-field-tracking-software .mi-google-testimonials .slider-card-body {
      min-height: 380px;
    }
  }

  /***********************Employee Field Tracking Software**********************/





  /***********************Business Logo Slider**********************************/
  .ds-home-business-logos .container {
    max-width: 1440px;
  }

  .ds-home-business-logos .home-logo-shadow::before {
    position: absolute;
    content: '';
    z-index: 5;
    width: 100px;
    height: 100%;
    top: 0;
    left: -2px;
    background: linear-gradient(90deg, var(--ds-light-gray) 0, rgba(241, 237, 233, 0) 100%);
  }

  .ds-home-business-logos .home-logo-shadow::after {
    position: absolute;
    content: '';
    z-index: 5;
    width: 100px;
    height: 100%;
    top: 0;
    right: -2px;
    background: linear-gradient(270deg, var(--ds-light-gray) 0, rgba(241, 237, 233, 0) 100%);
  }

  .ds-home-business-logos .slick-track {
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
  }

  .ds-home-business-logos .slick-list {
    padding: 0 !important;
    overflow: visible !important;
  }

  .ds-home-business-logos .slick-slide {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ds-home-business-logos .slick-slide .inner {
    margin: 0px 20px;
  }

  .ds-home-business-logos .ds-cient-logos .slick-slide img {
    margin: 0 0 45px;
    width: 130px;
    height: 65px;
    object-fit: contain;
    background: #FFF;
    box-shadow: 2px 4px 8px 0 rgb(0 0 0 / 8%);
    border-radius: 8px;
    padding: 10px;
  }

  .ds-home-business-logos .ds-cient-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .ds-home-business-logos .ds-cient-logos .slick-slide img {
      margin: 0 0 35px;
      width: 120px;
      height: 60px;
      object-fit: contain;

    }

    .ds-home-business-logos .slick-slide .inner {
      margin: 0 15px;
    }
  }

  @media (max-width: 575px) {
    .ds-home-business-logos .mi-cient-logos .slick-slide img {
      margin: 0 0 25px;
      width: 85px;
      height: 55px;
      object-fit: contain;
    }

    .ds-home-business-logos .slick-slide .inner {
      margin: 0 10px;
    }
  }

  @media (max-width: 359px) {
    .ds-home-banner .ds-banner-img img {
      margin: 0 -15px !important;
      width: 320px;
    }
  }

  /* ======================================================
FAQ ACCORDION
====================================================== */
  .modern-faq-section {
    overflow: hidden;
  }

  .modern-faq-accordion .faq-item {
    background: #F6F6F6;
    border: 1px solid transparent;
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
    transition: .3s ease;
  }

  .modern-faq-accordion .faq-item.active {
    border: 1px solid var(--ds-yellow);
    background: #ffffff;
  }

  .modern-faq-accordion .faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    cursor: pointer;
  }

  .modern-faq-accordion .faq-header h4 {
    font-size: var(--ds-fs-18);
    font-weight: 700;
    color: #111;
    margin: 0;
  }

  .modern-faq-accordion .faq-icon {
    font-size: 30px;
    line-height: 1;
    color: #111;
    font-weight: 300;
  }

  .modern-faq-accordion .faq-body {
    padding: 0 20px 20px;
    font-size: var(--ds-fs-16);
    color: #111;
    line-height: 2;
  }

  @media(max-width:767px) {
    .modern-faq-accordion .faq-header h4 {
      font-size: 18px;
      padding-right: 20px;
      line-height: 1.5;
    }

    .modern-faq-accordion .faq-body {
      padding: 0 24px 24px;
      font-size: 15px;
      line-height: 1.8;
    }

    .modern-faq-accordion .faq-icon {
      font-size: 28px;
    }

  }

  /***********************Testimonial section************************/
  .ds-home-google-testimonials .carousel-card-head {
    position: absolute;
    bottom: 15px;
    width: 90% !important;
  }

  .ds-home-google-testimonials .slider-card-body {
    min-height: 300px;
    padding: 13px 18px !important;
    box-shadow: 0 0 5px 1px rgb(164 164 164 / 14%);
  }

  .ds-home-google-testimonials {
    background-color: var(--ds-light-gray)
  }

  .ds-home-google-testimonials .swiper {
    margin-left: auto;
    margin-right: auto;
    position: static;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
  }

  .ds-home-google-testimonials .card-body img {
    width: 40px;
    max-height: 40px;
    overflow: hidden;
  }

  .ds-home-google-testimonials .card {
    border: none;
    height: auto;
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .ds-home-google-testimonials .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
  }

  .ds-google-profile-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ededed;
    color: #8e8e8e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    user-select: none;
  }

  .ds-home-google-testimonials .card-text {
    text-align: left;
    color: #1f3966;
    font-weight: 600;
    font-size: 14px;
    margin: 0 10px;
  }

  .ds-home-google-testimonials .card-title {
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
  }

  .ds-home-google-testimonials .company-text {
    color: #a1a1a1;
    font-size: 13px !important;
    font-weight: 400;
    text-align: left !important;
    margin-bottom: 0 !important;
    text-transform: uppercase;
  }

  .ds-home-google-testimonials h2 img {
    width: 95px;
  }

  .ds-home-testimonials .ds-frame-img img {
    width: 100%;
    position: relative;
    border-radius: 10px;
  }

  .ds-home-google-testimonials .swiper-button-prev {
    top: 97% !important;
    color: #fff !important;
    width: 30px !important;
    height: 30px !important;
    left: 0 !important;
    position: absolute;
    background: #1f3966;
    border-radius: 50px;
  }

  .ds-home-google-testimonials .swiper-button-next {
    top: 97% !important;
    color: #fff !important;
    width: 30px !important;
    height: 30px !important;
    right: 0 !important;
    position: absolute;
    background: #1f3966;
    border-radius: 50px;
  }

  .ds-home-google-testimonials .swiper-button-next,
  .ds-home-google-testimonials .swiper-button-prev {
    position: absolute;
    top: 50% !important;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
  }

  .ds-home-google-testimonials .swiper-button-next:after,
  .ds-home-google-testimonials .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
  }

  .ds-home-google-testimonials .swiper-button-next:after,
  .ds-home-google-testimonials .swiper-button-prev:after {
    font-size: 12px !important;
    font-weight: 700;
    text-shadow: 3px 1px 7px #1f3966;
  }

  /*************************Testimonails section end*******************/

  /*****************event*************************************/
  .ds-events .slide-container {
    width: 100%;
    padding: 0px 0 30px 0;
  }

  .ds-events .slide-content {
    margin: 0px;
    border-radius: 25px;

  }

  .ds-events .card {
    border-radius: 0px;
    /* margin-bottom: 20px; */
    display: block !important;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, .1) 0 4px 6px -1px, rgba(0, 0, 0, .06) 0 2px 4px -1px;
    border: solid 0px rgba(255, 255, 255, .25);
    background-color: #FFF;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
  }

  .ds-events .card:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .08);
    transition: all .3s ease;
    /* cursor: default; */
    /* cursor: pointer !important; */
  }

  .ds-events .image-content {
    display: flex;
    flex-direction: column;
  }

  .card-date {
    position: absolute;
    top: 168px;
    color: #FFF;
    background-color: #F6B718;
    height: 32px;
    width: 130px;
    text-align: center;
    left: 0;
    padding: 5px;
    font-weight: 600;
    border-radius: 0px 25px 0 0px;
  }

  .ds-events .card-content {
    width: 100% !important;
    display: block;
    margin-left: 0;
    padding: 20px;
  }

  .ds-events .image-content {
    width: 100%;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
  }

  .ds-events .name {
    font-size: 18px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.5rem;
    cursor: default;
  }

  .ds-events .description {
    font-size: 16px;
    color: #8D8D8D;
    cursor: default;
  }

  .ds-events .card-desc {
    height: 240px;
  }

  .ds-events .ds-events-desc {
    height: 240px;
  }

  .mi-other-events .ds-events-desc {
    height: 130px !important;
  }

  .ds-events .swiper-navBtn {
    color: #6E93f7;
    transition: color 0.3s ease;
  }

  .ds-events .swiper-navBtn:hover {
    color: #4070F4;
  }

  .ds-events .swiper-navBtn::before,
  .swiper-navBtn::after {
    font-size: 38px;
  }

  .ds-events .swiper-button-next {
    right: 0;
    top: 25px !important;
    position: absolute;
  }

  .ds-events .swiper-button-prev {
    left: 1035px;
    top: 25px !important;
    position: absolute;
  }

  .ds-events .swiper-pagination-bullet {
    background-color: #6E93f7;
    opacity: 1;
  }

  .ds-events .swiper-pagination-bullet-active {
    background-color: #4070F4;
  }

  .ds-events a.more-link {
    font-weight: 700;
    width: auto !important;
    font-size: 0.9rem !important;
    color: #323232 !important;
    text-transform: capitalize;
  }

  .ds-events a.more-link:hover {
    text-decoration: none;
  }

  .ds-events .card-content img {
    width: auto;
  }

  .ds-events .swiper-button-prev {
    background-image: url('../img/icons/carousel-left-primary.svg');
  }

  .ds-events .swiper-button-next {
    background-image: url('../img/icons/carousel-right-primary.svg');
  }

  .ds-events .swiper-button-next:after,
  .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    display: none;
  }

  .ds-events .swiper-button-prev:after,
  .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    display: none;
  }

  .ds-events .btn {
    width: 160px;
    height: 40px;
    border-radius: 5px;
  }

  .ds-events-banner {
    padding: 140px 0 !important;
  }

  .ds-events-banner h1 div {
    font-size: 28px;
    font-weight: 600;
  }

  .ds-events-banner h1 {
    font-size: 48px !important;
  }

  .ds-events-banner h1::before {
    content: "";
    display: block;
    position: absolute;
    top: -115px;
    left: 0;
    width: 100%;
    height: 110px;
    background: url(../img/banner-shape-top.png) no-repeat;
    background-size: 800px 110px;
  }

  .ds-events-banner h1::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../img/banner-shape-bottom.png) no-repeat;
    background-size: 840px 100px;
  }

  .mi-dived {
    border: 1px solid #D2D2D2;
    margin: 0;
  }

  .mi-event-gallery::after {
    content: "";
    display: inline-block;
    width: 200px;
    height: 100px;
    background: url(../img/icons/event-after.svg) no-repeat;

    background-size: 194px 95px;
    position: absolute;
    top: 15px;
    left: -6px;
  }

  .mi-other-events::before {
    content: "";
    display: inline-block;
    width: 200px;
    height: 100px;
    background: url(../img/icons/event-before.svg) no-repeat;
    background-size: 194px 95px;
    position: absolute;
    bottom: 26px;
    right: -7px;
  }

  .mi-other-events-btn {
    position: absolute;
    justify-content: center;
    align-items: center;
    display: flex;
    top: 50%;
    left: 25%;
  }

  .mi-other-events-card .card {
    border: 1px solid #f6b719;
  }

  .mi-workshop-specializing .mi-apps-list-check li {
    text-align: center;
    display: inline-block;
    margin-bottom: 15px;
    padding-left: 60px;
    font-size: 18px;
    font-weight: 800;
    line-height: 24px;
    color: #1f3966;
    position: relative;
  }

  .mi-business-tools .video-btn {
    cursor: pointer;
    transform: scale(1) !important;
  }

  .mi-business-tools .video-btn:hover {
    cursor: pointer;
    transform: scale(1) !important;
  }

  @media (min-width: 992px) and (max-width: 1199px) {
    .ds-events .card-desc {
      height: 250px;
    }

    .tab-content .tab-pane{
      height: 100% !important;
      padding: 0 ;
    }

    .ds-events .ds-events-desc {
      height: 270px;
    }

    .ds-events .swiper-button-prev {
      left: 850px;
      top: 25px !important;
      position: absolute;
    }

    .card-date {
      top: 130px;
    }
  }

  @media (max-width: 767px) {
    .ds-events-banner h1 div {
      font-size: 18px;
      line-height: 30px;
    }

    section.ds-events-banner h1 {
      margin-bottom: 15px !important;
      font-size: 30px !important;
    }
  }

  @media (min-width: 768px) and (max-width: 991px) {
    .ds-events .swiper-button-prev {
      left: 600px;
      top: 25px !important;
      position: absolute;
    }

    .card-date {
      top: 140px;
    }

    .ds-events .slide-container {
      width: 100%;
      padding: 40px 0 30px 0;
    }

    .section, .smart-home-platform-section{
      padding: 50px 0;
    }

  }

  @media (min-width: 576px) and (max-width: 767px) {
    .ds-events .swiper-button-prev {
      left: 420px;
      top: 25px !important;
      position: absolute;
    }

    .ds-events .card-desc {
      height: 170px !important;
    }

    .mi-other-events .ds-events-desc {
      height: 130px !important;
    }

    .card-date {
      top: 230px;
    }

    .ds-events .slide-container {
      width: 100%;
      padding: 38px 0 30px 0;
    }

    .mi-other-events-card .card {
      border: 0px solid #f6b719;
    }
  }

  @media (max-width: 575px) {
    .ds-events .slide-container {
      padding: 15px 0 !important;
    }

    .card-date {
      top: 160px;
    }

    .ds-events-banner h1::after {
      bottom: -45px;
      left: calc(100% - 295px);
      width: 295px;
      height: 35px;
      background-size: 295px 35px;
    }

    .ds-events-banner h1::before {
      top: -45px;
      left: calc(100% - 295px);
      width: 295px;
      height: 40px;
      background-size: 295px 40px;
    }

    .ds-events-banner {
      padding: 70px 0 !important;
    }

    .mi-event-gallery::after {
      display: none;
    }

    .mi-other-events::before {
      display: none;
    }

    .mi-other-events-card .card {
      border: 0px solid #f6b719;
    }
  }

  @media (max-width: 991px) {
    .ds-events.swiper-button-prev {
      left: 600px;
      top: 25px !important;
      position: absolute;
    }

    .mi-other-events-card .card {
      border: 0px solid #f6b719;
    }
  }

  /********************event end***************/

  /*****************Payroll software ***************************/
  /* ===================================
     HERO SECTION
  =================================== */

  .ds-payroll-hero {
    position: relative;
    overflow: visible;
    background: linear-gradient(180deg, #FFEFE7 0%, #FBBEA1 100%);
    padding: 100px 0 60px;
}

.payroll-dashboard-image {
    position: relative;
    z-index: 2;
    margin-bottom: -120px;
}

.payroll-dashboard-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Next section */
.ds-payroll-features {
    padding-top: 150px;
}

  .ds-payroll-software-label {
    border: 1px solid #FF53254D;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    color: #FF5325;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    background: #FFFFFF4D;

  }

  /* Rounded Line Background */
  .ds-payroll-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background-image:
      repeating-radial-gradient(circle at left center,
        transparent 0,
        transparent 55px,
        rgba(255, 120, 70, 0.08) 56px,
        rgba(255, 120, 70, 0.08) 58px);

    background-size: 120% 120%;
    opacity: .9;
    pointer-events: none;
  }

  /* Content Above Lines */
  .ds-payroll-hero .container {
    position: relative;
    z-index: 2;
  }

  .payroll-hero-content {
    margin: auto;
    position: relative;
    z-index: 2;
    max-width: 1024px;
  }

  .payroll-hero-content h1 {
    font-weight: 600;
    line-height: 1.15;
    font-size: 44px;
    color: #111;
    margin-bottom: 24px;
  }

  .payroll-hero-content h1 span {
    color: #ff5a1f;
    font-weight: 800;
  }

  .payroll-hero-content p {
    margin: auto;
    /* max-width: 800px; */
    font-size: 18px;
    line-height: 1.9;
    color: #201e1e;
  }


  /* ===================================
     DASHBOARD IMAGE
  =================================== */

  .payroll-dashboard-image {
    position: relative;
    z-index: 2;
    margin-top: 0px;
    bottom: -30px;
  }

  .payroll-dashboard-image img {
    width: 100%;

    animation: dashboardFloat 5s ease-in-out infinite;
  }

  @keyframes dashboardFloat {

    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-10px);
    }

    100% {
      transform: translateY(0px);
    }
  }

  /* ===================================
     FEATURE SECTION
  =================================== */
  .payroll-compliant {
    background-color: #FFEFE7;
  }

  .payroll-compliant .payroll-stats {
    border-radius: 12px;
    margin-top: 40px;
  }

  .payroll-compliant .payroll-stats h3 {
    font-weight: 800;
    color: #F44336;
    margin-bottom: 8px;
    line-height: 1;
  }

  .payroll-compliant .payroll-stats p {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    line-height: 1.5;
  }
/* Tablet */
@media (max-width: 991px) {
    .ds-payroll-hero {
        padding: 80px 0 40px;
    }

    .payroll-dashboard-image {
        margin-bottom: -80px;
    }

    .ds-payroll-features {
        padding-top: 100px;
    }

    .payroll-hero-content h1 {
    font-weight: 600;
        line-height: 52px;
    font-size: 42px;
    color: #111;
    margin-bottom: 24px;
}

.payroll-hero-content h1 span{
  display: block;
}
}

  @media (max-width: 767px) {
 .ds-payroll-hero {
       /* min-height: 100vh;  Full mobile screen height */
        padding: 70px 0 30px;
    }

    .payroll-dashboard-image {
        margin-bottom: 0; /* Remove overlap on mobile */
    }

    .ds-payroll-features {
        padding-top: 50px;
    }

    .payroll-dashboard-image img {
        width: 100%;
    }
    .payroll-compliant .payroll-stats {
      padding: 25px 15px;
    }

    .payroll-compliant .payroll-stats .stat-item {
      margin-bottom: 25px;
    }

    .payroll-compliant .payroll-stats .stat-item::after {
      display: none;
    }


    .payroll-compliant .payroll-stats p {
      font-size: 14px;
    }
  }

  .payroll-feature-section {
    padding-top: 130px;
    background: #fff;
  }


  .payroll-feature-box .icon-box i {
    width: 26px;
    height: 26px;
    display: inline-block;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: all 0.35s ease;
  }

  /* ICON BOX */
  .payroll-feature-box .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #fff1eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.35s ease;
  }

  /* HOVER */
  .payroll-feature-box:hover .icon-box {
    background: linear-gradient(135deg, #ff6a2a, #ff4d2d);
    color: #fff;
  }

  .payroll-feature-box:hover .icon-box .icon-stay-compliant{
    filter: invert(0) brightness(10 );
  }

  .section-heading h2 {
    font-weight: 700;
    color: #1C274C;
    margin-bottom: 5px;
  }

  .section-heading p {
    color: #666;
    font-size: 16px;
  }

  .pay-fea-para{
    font-size: 16px;
  }

  /* FEATURE BOX */
  .payroll-feature-box {
    height: 100%;
    padding: 20px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #f1dfd6;
    transition: .35s;
  }

  .payroll-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 60px 0px #FFE9DE;
  }

  .payroll-feature-box h4 {
    font-weight: 700;
    margin-bottom: 14px;
    color: #111;
  }

  .payroll-feature-box p {
    color: #323232;
    line-height: 26px;
    margin-bottom: 0;
  }

  .payroll-cta-section {
    position: relative;
    overflow: hidden;
    background:
      url("../../contents/images/payroll-software-cta-mobile-app.webp");
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
  }


  /* Extra soft glow */
  .payroll-cta-section .container {
    position: relative;
    z-index: 2;
  }



  .payroll-store-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .payroll-store-btns img {
    height: 52px;
    transition: .3s ease;
  }

  .payroll-store-btns a:hover img {
    transform: translateY(-4px);
  }

  .payroll-cta-section img {
    max-width: 380px;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
  }


  .payroll-cta {
    position: relative;
    overflow: hidden;
    background:
      url("../../contents/images/payroll-software-states-cta.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
  }


  /* Feature items */
  .payroll-cta .payroll-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    column-gap: 50px;
    margin: 35px 0;
  }

  .payroll-cta .payroll-features span {
    color: #fff;
    font-weight: 600;
    position: relative; 
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .payroll-cta .payroll-features span::before {
    /* content: "✓";
    position: absolute;
    left: -3px;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFF; */
  }

  /* CTA Button */
  .payroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 38px;
    background: #FF5325;
    border: 0px;
    color: #FFF;
        border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  .payroll-btn:hover {
    transform: translateY(-4px);
    color: #FFF;
  }

  .payroll-white-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 38px;
    background: #FFF;
    border: 0px;
    color: #FF5325;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  .payroll-white-btn:hover {
    transform: translateY(-4px);
    color: #FF5325;
  }

  /* Stats cards */
  .payroll-cta .payroll-stats {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .payroll-cta .payroll-stat-card {
    background: rgba(255, 255, 255, 0.95);
    min-width: 170px;
    padding: 28px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    transition: all .35s ease;
    cursor: pointer;
    position: relative;
  }

  /* Hover Effect */
  .payroll-stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
  }

  .payroll-cta .payroll-stat-card h3 {
    color: #ef5a29;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 6px;
  }

  .payroll-cta .payroll-stat-card p {
    margin: 0;
    color: #555;
    font-weight: 500;
  }




  .payroll-feature-deep-dive {
    position: relative;
    overflow: hidden;
    background: #fff;
  }


  /* Feature block */
  .payroll-feature-deep-dive .feature-block {
    margin-top: 50px;
  }

  .payroll-feature-deep-dive .feature-image-wrap {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, #FFEFE7 0%, #FBBEA1 100%);
    padding: 30px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .payroll-feature-deep-dive .feature-card{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .payroll-feature-deep-dive .feature-image-wrap img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    border-radius: 18px;
    animation: floatImage 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.18));
    transition: .4s ease;
    width: 90%;
  }

  .feature-image-wrap:hover img {
    transform: scale(1.03);
  }

  /* Floating movement */
  @keyframes floatImage {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-14px);
    }

    100% {
      transform: translateY(0px);
    }
  }

  /* Curved mesh background */
  .payroll-feature-deep-dive .feature-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      repeating-radial-gradient(ellipse at top left,
        rgba(241, 114, 54, 0.10) 0px,
        rgba(241, 114, 54, 0.10) 2px,
        transparent 2px,
        transparent 22px);
    opacity: .9;
  }

  .padd-right{
    padding-right: 40px;
  }


  /* Right content */
  .payroll-feature-deep-dive .feature-content {
    padding-left: 40px;
  }

  .payroll-feature-deep-dive .feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
  }

  .payroll-feature-deep-dive .feature-content p {
    color: #323232;
    line-height: 26px;
    margin-bottom: 30px;
  }

  .payroll-feature-deep-dive .feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .payroll-feature-deep-dive .feature-points li {
    position: relative;
    /* padding-left: 34px; */
    margin-bottom: 15px;
    color: #323232;
    line-height: 24px;
  }

  .payroll-check li {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* .payroll-feature-deep-dive .feature-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    background: #ef5a29;
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  } */

  /* Alternate section spacing */
  .payroll-feature-deep-dive .feature-block.reverse {
    margin-top: 50px;
  }



  /* ===================================
     RESPONSIVE
  =================================== */

  @media(max-width:991px) {
    .payroll-feature-section {
      padding-top: 50px;
    }

    .payroll-cta-section {
      text-align: center;
      padding: 70px 20px 0;
    }

    .pay-com-tab{
      padding-top: 70px !important;
    }

    section {
     padding: 50px 0;
    }

    .ds-performance-about-content h4{
      margin-bottom: 16px;
    }
    
    .payroll-store-btns {
      justify-content: center;
    }

    .payroll-cta-section img {
      width: 90% !important;
      margin-top: 30px;
    }

    .payroll-cta .payroll-features {
      gap: 15px 25px;
    }

    .payroll-cta .payroll-stat-card {
      min-width: 180px;
      padding: 22px 15px;
    }

    .payroll-cta .payroll-stat-card h3 {
      font-size: 1.7rem;
    }

    .payroll-cta::after {
      width: 700px;
      height: 500px;
      right: -260px;
      bottom: -160px;
    }

    .ds-payroll-hero {
      padding: 80px 0 120px;
      height: 100%;
    }

    .payroll-cta{
        background-color: #D24B27;
    }

    .payroll-feature-deep-dive .feature-deep-dive {
      padding: 70px 0;
    }

    .payroll-feature-deep-dive .feature-image-wrap img {
      width: 100%;
    }

    .payroll-feature-deep-dive .feature-content {
      padding-left: 0;
      margin-top: 40px;
    }

    .payroll-feature-deep-dive .feature-content h3 {
      font-size: 1.6rem;
    }

    .payroll-feature-deep-dive .feature-image-wrap {
      min-height: auto;
      padding: 10px;
    }

  }

  @media(max-width:767px) {
    
    .ds-payroll-hero{
      padding: 80px 0 100px;
    }

    .payroll-feature-deep-dive h2{
      font-size: 26px !important;
    }

    .ds-performance-about-content span{
      display: block;
    }

    .pay-com-tab {
        padding-top: 40px !important;
    }

    .payroll-compliant .payroll-stats{
      margin-top: 20px;
    }

    .ds-performance-about-content p, .payroll-cta p, .payroll-feature-deep-dive p, .run-pay-lead, .payroll-feature-box p{
      font-size: 14px !important;
    }

     


    .payroll-hero-content p {
      font-size: 14px;
    }

    .payroll-feature-box {
      padding: 28px;
    }

    .payroll-dashboard-image {
      bottom: -60px;
    }

  }

  /*****************Payroll software ***************************/

  .nav-right .mi-btn-border {
    border: 2px solid #f6b719;
    border-radius: 20px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    width: 110px;
    background-color: #f6b719;
  }

  .nav-right .mi-btn-primary {
    width: 128px;
    height: auto;
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 20px;
  }

  /***********************ATS Page*********************************/
  /*********************** ATS HERO SECTION *********************************/

  .ds-ats-software-hero {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image:
      linear-gradient(#101c2d 50%, #2b3072 80%, #3d2e91);
  }

  /* ATS HERO TITLE */
  .ds-ats-software-hero .ds-ats-software-banner-title {
    font-weight: 700;
    line-height: 1.2;
    color: #fff;

    margin-bottom: 18px;
  }

  /* ATS HERO DESCRIPTION */
  .ds-ats-software-hero .ds-ats-software-banner-desc {
    max-width: 520px;

    line-height: 1.7;
    color: #fff;

    margin-bottom: 25px;
  }

  /* ATS HERO BUTTON */
  .ds-ats-software-primary {
    border: none;
    cursor: pointer;

    padding: 12px 26px;
    border-radius: 10px;

    color: #fff;
    font-weight: 600;

    transition: 0.3s ease;

    background-image:
      linear-gradient(121deg, #0074e8, #6330c0);

    box-shadow:
      0 10px 25px rgba(16, 119, 218, 0.25);
  }

  .ds-ats-software-primary:hover {
    transform: translateY(-3px);

    box-shadow:
      0 15px 30px rgba(16, 119, 218, 0.35);
  }

  /* ATS HERO LABEL */
  .ds-ats-software-label {
    display: inline-block;

    padding: 6px 14px;
    border-radius: 30px;

    color: #fff;
    font-size: 13px;
    font-weight: 600;

    margin-bottom: 15px;

    background-image:
      linear-gradient(121deg, #0074e8, #6330c0);
  }

  /*********************** ATS WORKFLOW SECTION *********************************/

  .ds-ats-workflow {
    background: #fff;
  }

  .ds-ats-workflow-heading {
    margin-bottom: 80px;
  }

  /* WORKFLOW LABEL */
  .ds-ats-workflow-label {
    display: inline-block;

    padding: 8px 18px;
    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    color: #1077DA;

    margin-bottom: 18px;

    background: rgba(16, 119, 218, 0.08);
  }

  /* WORKFLOW TITLE */
  .ds-ats-workflow-heading h2 {
    font-weight: 700;
    color: #111;

    margin-bottom: 18px;
  }

  /* WORKFLOW DESCRIPTION */
  .ds-ats-workflow-heading p {
    max-width: 760px;
    margin: auto;

    font-size: 17px;
    line-height: 1.8;

    color: #666;
  }

  /* WORKFLOW ROW */
  .ds-ats-step-row {
    margin-bottom: 90px;
  }

  /* WORKFLOW CONTENT */
  .ds-ats-step-content {
    padding-right: 40px;
  }

  /* STEP NUMBER */
  .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    border-radius: 18px;

    color: #fff;
    font-size: 22px;
    font-weight: 700;

    margin-bottom: 24px;

    background:
      linear-gradient(135deg, #1077DA, #00C2FF);

    box-shadow:
      0 15px 35px rgba(16, 119, 218, 0.18);
  }

  /* STEP TITLE */
  .ds-ats-step-content h3 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;

    color: #111;

    margin-bottom: 18px;
  }

  /* STEP DESCRIPTION */
  .ds-ats-step-content p {
    font-size: 16px;
    line-height: 1.9;

    color: #666;
  }

  /* WORKFLOW IMAGE CARD */
  .ds-ats-step-image {
    position: relative;

    padding: 24px;
    border-radius: 28px;

    background:
      linear-gradient(215deg, #e5f7ff, #eed7ff);

    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.06);
  }

  /* WORKFLOW IMAGE */
  .ds-ats-step-image img {
    width: 100%;
    border-radius: 18px;
  }

  /*********************** ATS FEATURES SECTION *********************************/

  .ds-ats-features {
    position: relative;
    overflow: hidden;

    background-image:
      linear-gradient(#101c2d 50%, #2b3072 80%, #3d2e91);
  }

  /* FEATURES PATTERN */
  .ds-ats-features::before {
    content: "";
    position: absolute;
    inset: 0;

    opacity: 0.4;

    background-image:
      radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);

    background-size: 26px 26px;
  }

  /* FEATURES HEADING */
  .ds-ats-features-heading {
    position: relative;
    z-index: 2;

    margin-bottom: 70px;
  }

  /* FEATURES TITLE */
  .ds-ats-features-heading h2 {
    font-weight: 700;
    line-height: 1.2;

    color: #fff;

    margin-bottom: 18px;
  }

  /* FEATURES DESCRIPTION */
  .ds-ats-features-heading p {
    max-width: 760px;
    margin: auto;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.72);
  }

  /* FEATURE CARD */
  .ds-ats-feature-card {
    position: relative;
    z-index: 2;

    height: 100%;

    overflow: hidden;

    padding: 35px 30px;
    border-radius: 28px;

    transition: 0.4s ease;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
  }

  /* FEATURE CARD TOP BORDER */
  .ds-ats-feature-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
      linear-gradient(90deg, #00C2FF, #8f6dff);
  }

  /* FEATURE CARD HOVER */
  .ds-ats-feature-card:hover {
    transform: translateY(-10px);

    background: rgba(255, 255, 255, 0.12);

    box-shadow:
      0 25px 50px rgba(0, 0, 0, 0.25);
  }

  /* FEATURE ICON BOX */
  .ds-ats-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    border-radius: 22px;

    margin-bottom: 24px;

    background-image: linear-gradient(121deg, #0074e8, #6330c0);
  }

  /* FEATURE ICON */
  .ds-ats-feature-icon i {
    font-size: 28px;
    color: #2b3072;
  }

  /* FEATURE TITLE */
  .ds-ats-feature-card h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;

    color: #fff;

    margin-bottom: 16px;
  }

  /* FEATURE DESCRIPTION */
  .ds-ats-feature-card p {
    font-size: 15px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.72);

    margin-bottom: 0;
  }

  /*********************** ATS CTA SECTION *********************************/

  .ds-ats-cta {
    background: #f8fbff;
  }

  /* CTA WRAPPER */
  .ds-ats-cta-wrap {
    position: relative;
    overflow: hidden;

    padding: 60px;
    border-radius: 32px;

    border: 1px solid rgba(255, 255, 255, 0.6);

    background-image:
      linear-gradient(215deg, #e5f7ff, #eed7ff);

    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.06);
  }

  /* CTA PATTERN */
  .ds-ats-cta-wrap::before {
    content: "";
    position: absolute;
    inset: 0;

    opacity: 0.6;

    pointer-events: none;

    background-image:
      radial-gradient(rgba(16, 119, 218, 0.08) 1px, transparent 1px);

    background-size: 22px 22px;
  }

  /* CTA TITLE */
  .ds-ats-cta-title {
    font-weight: 700;
    line-height: 1.2;

    color: #111;

    margin-bottom: 18px;
  }

  /* CTA DESCRIPTION */
  .ds-ats-cta-desc {
    max-width: 720px;

    line-height: 1.8;
    color: #4F4F4F;

    margin-bottom: 0;
  }

  /*********************** ATS WHY SECTION *********************************/

  .ds-ats-why {
    position: relative;
    overflow: hidden;

    background: #f8fbff;
  }

  /* WHY HEADING */
  .ds-ats-why-heading {
    margin-bottom: 45px;
  }

  /* WHY LABEL */
  .ds-ats-why-label {
    display: inline-block;

    padding: 8px 18px;
    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    color: #1077DA;

    margin-bottom: 18px;

    background: rgba(16, 119, 218, 0.08);
  }

  /* WHY TITLE */
  .ds-ats-why-heading h2 {
    font-weight: 700;
    line-height: 1.2;

    color: #111;

    margin-bottom: 18px;
  }

  /* WHY DESCRIPTION */
  .ds-ats-why-heading p {
    max-width: 650px;

    font-size: 17px;
    line-height: 1.8;

    color: #666;
  }

  /* WHY CARD */
  .ds-ats-why-card {
    height: 100%;

    padding: 20px;
    border-radius: 24px;

    transition: 0.4s ease;

    border: 1px solid #edf1f7;

    background: #fff;

    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.04);
  }

  /* WHY CARD HOVER */
  .ds-ats-why-card:hover {
    transform: translateY(-8px);

    box-shadow:
      0 20px 45px rgba(16, 119, 218, 0.10);
  }

  /* WHY ICON BOX */
  .ds-ats-why-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 68px;
    height: 68px;

    border-radius: 20px;

    margin-bottom: 22px;

    background-image: linear-gradient(121deg, #0074e8, #6330c0);
  }

  /* WHY ICON */
  .ds-ats-why-icon i {
    font-size: 26px;
    color: #2b3072;
  }

  /* WHY CARD TITLE */
  .ds-ats-why-card h3 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;

    color: #111;

    margin-bottom: 14px;
  }

  /* WHY IMAGE */
  .ds-ats-why-image {
    position: relative;

    padding-left: 50px;
  }

  .ds-ats-why-image img {
    width: 100%;
  }

  /* FLOATING CARD */
  /* .ds-ats-floating-card {
    position: absolute;

    left: 0;
    bottom: 40px;

    padding: 24px 28px;
    border-radius: 22px;

    background: #fff;

    box-shadow:
      0 20px 45px rgba(0, 0, 0, 0.12);
  }

  .ds-ats-floating-card span {
    display: block;

    font-size: 14px;
    color: #666;

    margin-bottom: 8px;
  }

  .ds-ats-floating-card h4 {
    margin: 0;

    font-size: 36px;
    font-weight: 700;

    color: #1077DA;
  } */

  /*********************** ATS DARK CTA SECTION *********************************/

  .ds-ats-dark-cta {
    position: relative;

    background-image:
      linear-gradient(#101c2d 50%, #2b3072 80%, #3d2e91);
  }

  /* DARK CTA WRAPPER */
  .ds-ats-dark-cta-wrap {
    position: relative;
    overflow: hidden;
  }

  /* DARK CTA TITLE */
  .ds-ats-dark-cta h2 {
    position: relative;
    z-index: 2;

    font-weight: 700;
    line-height: 1.2;

    color: #fff;

    margin-bottom: 22px;
  }

  /* DARK CTA DESCRIPTION */
  .ds-ats-dark-cta p {
    position: relative;
    z-index: 2;

    max-width: 760px;

    font-size: 17px;
    line-height: 1.9;

    color: #fff;

    margin-bottom: 0;
  }

  /*********************** ATS RESPONSIVE *********************************/

  @media(max-width:991px) {

    /* WHY SECTION */
    .ds-ats-why {
      padding: 70px 0;
    }

    .ds-ats-why-image {
      margin-top: 50px;
      padding-left: 0;
    }

    .ds-ats-floating-card {
      left: 20px;
      bottom: 20px;
    }

    /* FEATURES SECTION */
    .ds-ats-features-heading {
      margin-bottom: 50px;
    }

    /* WORKFLOW SECTION */
    .ds-ats-workflow-heading {
      margin-bottom: 50px;
    }

    .ds-ats-step-row {
      margin-bottom: 70px;
    }

    .ds-ats-step-content {
      padding-right: 0;

      text-align: center;

      margin-bottom: 30px;
    }

    /* LIGHT CTA */
    .ds-ats-cta-wrap {
      padding: 40px 30px;
      text-align: center;
    }

    .ds-ats-cta-title {
      font-size: 32px;
    }

    .ds-ats-cta-btn {
      margin-top: 30px;
    }

    /* DARK CTA */
    .ds-ats-dark-cta-wrap {
      padding: 50px 35px;
      text-align: center;
    }

    .ds-ats-dark-cta-btn {
      margin-top: 30px;
    }

  }

  /*********************** ATS PAGE ENDS *********************************/
  /**********************HR Software *************************************/
  /*************************************************
HERO SECTION
*************************************************/
  .ds-human-resource-software {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background:
      linear-gradient(118deg, rgba(89, 56, 183, 0) 48.33%, #5938b7 92.96%),
      #201547;
  }

  .ds-human-resource-software .ds-banner-title {
    font-weight: 700;
    color: #fffcfc;
    margin-bottom: 25px;
    line-height: 1.15;
  }

  .ds-human-resource-software .ds-banner-desc {
    line-height: 1.8;
    color: #ffffff;
    max-width: 500px;
    margin-bottom: 35px;
  }

  .ds-hr-software-label {
    display: inline-block;
    border: 1px solid #FFF;
    color: #ffffff;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 10px 30px;
    font-weight: 600;
  }

  .ds-human-resource-software-primary {
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    transition: 0.3s ease;
    border: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background-image: linear-gradient(121deg, #0074e8, #6330c0);
    box-shadow: 0 10px 25px rgba(16, 119, 218, 0.25);
  }

  .ds-human-resource-software-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .ds-human-resource-software-banner img {
    width: 100%;
  }

  /* Shapes */
  .ds-human-resource-software .ds-shape.one {
    position: absolute;
    width: 220px;
    height: 220px;
    top: 60px;
    right: 6%;
    border-radius: 38px;
    border: 2px dashed rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(135deg,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    transform: rotate(22deg);
    z-index: -1;
  }

  .ds-human-resource-software .ds-shape.two {
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: 110px;
    right: 18%;
    border-radius: 50%;
    background:
      linear-gradient(135deg,
        rgba(0, 194, 255, 0.9),
        rgba(125, 92, 255, 0.9));
    box-shadow: 0 0 25px rgba(0, 194, 255, 0.45);
    z-index: -1;
  }

  .ds-human-resource-software .ds-shape.three {
    position: absolute;
    width: 42px;
    height: 42px;
    left: 44%;
    top: 150px;
    transform: rotate(12deg);
    z-index: -1;
  }

  .ds-human-resource-software .ds-shape.three::before,
  .ds-human-resource-software .ds-shape.three::after {
    content: "";
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.35),
        rgba(0, 194, 255, 0.35));
  }

  .ds-human-resource-software .ds-shape.three::before {
    width: 42px;
    height: 6px;
    top: 18px;
    left: 0;
  }

  .ds-human-resource-software .ds-shape.three::after {
    width: 6px;
    height: 42px;
    left: 18px;
    top: 0;
  }


  /*************************************************
ABOUT SECTION
*************************************************/
  .ds-hr-software-assistance {
    position: relative;
    background: linear-gradient(118deg, rgba(89, 56, 183, 0) 48.33%, #5938b7 92.96%), #201547;
    overflow: hidden;
  }

  .ds-hr-image {
    position: relative;
    padding-right: 40px;
  }

  .ds-hr-image img {
    width: 100%;
    border-radius: 30px;
  }

  .ds-hr-about-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #1077DA;
    margin-bottom: 18px;
    background: rgba(16, 119, 218, 0.08);
  }

  .ds-hr-about-title {
    font-weight: 700;
    color: #FFF;
    margin-bottom: 28px;
  }

  .ds-hr-about-desc {
    line-height: 1.9;
    color: #FFF;
    margin-bottom: 30px;
  }

  .ds-hr-about-list {
    padding: 0;
    margin: 0 0 35px;
    list-style: none;
  }

  .ds-hr-about-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: #FFF;
    font-weight: 500;
  }

  .ds-hr-about-list i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .ds-hr-about-list i::before {
    content: "✓";
    color: #000000;
    font-size: 14px;
    font-weight: 700;
  }


  /*************************************************
KEY FEATURES SECTION
*************************************************/
  .ds-hr-software-key-features {
    background: linear-gradient(rgba(246, 248, 251, 0.8) 0%, rgba(245, 247, 250, 0) 100%);
  }

  .ds-hr-software-key-features .ds-feature-card {
    background: #fff;
    border: 1px solid #edf1eb;
    border-radius: 22px;
    padding: 20px;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  }

  .ds-hr-software-key-features .ds-feature-card:hover {
    border-color: #5938b7;
    transform: translateY(-6px);
  }


  .ds-hr-software-key-features .ds-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(118deg, rgba(89, 56, 183, 0) 48.33%, #5938b7 92.96%), #201547;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
  }

  .ds-hr-software-key-features .ds-feature-icon i {
    font-size: 34px;
    color: #fff;
  }

  .ds-hr-software-key-features .ds-feature-card h4 {
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 18px;
    color: #121212;
  }

  .ds-hr-software-key-features .ds-feature-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
  }


  /*************************************************
MAIN FEATURE SECTION
*************************************************/
  .ds-hr-software-main-feature {
    position: relative;
    background-color: #ae878700;
    overflow: hidden;
  }

  .ds-hr-software-main-feature .ds-feature-block {
    position: relative;
    margin-bottom: 45px;
    padding: 35px;
    border-radius: 40px;
    background: rgb(255 255 255 / 99%);
    transition: all 0.4s ease;
    box-shadow: 0px 0px 40px rgb(0 0 0 / 13%);
    background: #F7F8FB;
  }

  .ds-hr-software-main-feature .ds-feature-block:hover {
    transform: translateY(-8px);
  }

  .ds-hr-software-main-feature .ds-hr-image img {
    width: 100%;
    border-radius: 28px;
  }


  /*************************************************
CTA SECTION
*************************************************/
  .ds-cta-human-resource-software {
    position: relative;
    background: linear-gradient(118deg, rgba(89, 56, 183, 0) 48.33%, rgb(89, 56, 183) 92.96%), rgb(32, 21, 71);
    overflow: hidden;
  }

  .ds-cta-human-resource-software .ds-cta-wrapper {
    position: relative;
    z-index: 2;
  }

  .ds-cta-human-resource-software .ds-cta-image img {
    width: 100%;
    border-radius: 30px;
  }

  .ds-cta-human-resource-software .ds-cta-content {
    padding-left: 50px;
  }

  .ds-cta-human-resource-software .ds-cta-title {
    line-height: 1.1;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 28px;
  }

  .ds-cta-human-resource-software .ds-cta-desc {
    line-height: 1.9;
    color: #FFF;
  }

  /* CTA Shapes */
  .ds-cta-human-resource-software .ds-cta-shape.one {
    position: absolute;
    width: 140px;
    height: 140px;
    top: 80px;
    left: 5%;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(18deg);
  }

  .ds-cta-human-resource-software .ds-cta-shape.two {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    bottom: 110px;
    right: 10%;
    background: #7b61ff;
  }

  .ds-cta-human-resource-software .ds-cta-shape.three {
    position: absolute;
    width: 220px;
    height: 220px;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.20);
  }


  /*************************************************
WHY CHOOSE SECTION
*************************************************/
  .ds-why-choose-hr-software {
    position: relative;
    background: linear-gradient(rgba(246, 248, 251, 0.8) 0%, rgba(245, 247, 250, 0) 100%);
  }

  .ds-why-choose-hr-software .ds-why-card {
    background: rgba(255, 255, 255, 0.78);
    border-radius: 28px;
    padding: 30px 20px;
    height: 100%;
    border: 1px solid #FFFF;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  }

  .ds-why-choose-hr-software .ds-why-card:hover {
    transform: translateY(-8px);
    border: 1px solid #5938b7;
  }

  /* .ds-why-choose-hr-software .ds-why-card:hover h3,
  .ds-why-choose-hr-software .ds-why-card:hover p {
    color: #fff;
  } */

  .ds-why-choose-hr-software .ds-why-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: linear-gradient(118deg, rgba(89, 56, 183, 0) 48.33%, #5938b7 92.96%), #201547;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 28px;
  }

  .ds-why-choose-hr-software .ds-why-icon i {
    font-size: 34px;
    color: #fff;
  }

  .ds-why-choose-hr-software .ds-why-card h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #121212;
    margin-bottom: 18px;
    text-align: center;
  }

  .ds-why-choose-hr-software .ds-why-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 0;
    text-align: center;
  }


  /*************************************************
RESPONSIVE
*************************************************/
  @media (max-width: 991px) {

    .ds-hr-image {
      padding-right: 0;
      margin-bottom: 50px;
    }

    .ds-human-resource-software {
      text-align: center;
    }

    .ds-human-resource-software-banner {
      margin-top: 50px;
    }

    .ds-human-resource-software .ds-banner-desc {
      margin-left: auto;
      margin-right: auto;
    }

    .ds-cta-human-resource-software .ds-cta-content {
      padding-left: 0;
      margin-top: 45px;
      text-align: center;
    }

    .ds-hr-software-main-feature .ds-feature-block,
    .ds-why-choose-hr-software .ds-why-card {
      padding: 30px;
    }
  }

  @media (max-width: 767px) {

    .ds-hr-software-assistance,
    .ds-hr-software-key-features,
    .ds-hr-software-main-feature,
    .ds-cta-human-resource-software,
    .ds-why-choose-hr-software {
      padding: 70px 0;
    }

    .ds-human-resource-software .ds-banner-title,
    .ds-cta-human-resource-software .ds-cta-title,
    .ds-hr-about-title {
      font-size: 32px;
      line-height: 1.2;
    }

    /* .ds-human-resource-software-primary {
      width: 100%;
    } */

    .ds-human-resource-software .ds-shape.one,
    .ds-human-resource-software .ds-shape.two,
    .ds-human-resource-software .ds-shape.three,
    .ds-cta-human-resource-software .ds-cta-shape {
      display: none;
    }
  }

  /***********************HR software End**************************/
  /**********************Leave Software page***********************/
  .leave-hero-premium {
    position: relative;
    overflow: hidden;
    background: url(../../contents/images/leave-banner.webp) center center / cover no-repeat;
    padding-bottom: 0 !important;
  }

  /* Premium glass overlay */
  .leave-hero-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: repeating-radial-gradient(circle at left center, #6bffbf00 0, #3effd200 55px, rgb(70 255 217 / 8%) 56px, rgb(107 255 207 / 22%) 58px);
    background-size: 120% 120%;
    opacity: .9;
    pointer-events: none;
    backdrop-filter: blur(2px);
    z-index: -2;
  }

  .leave-hero-premium .hero-content {
    position: relative;
    z-index: 2;
  }

  .leave-hero-premium .hero-content span {
    color: #5433BE;
    font-weight: 800;
  }

  .leave-hero-premium .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid #9B9DF659;
    backdrop-filter: blur(12px);
    color: #5433BE;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(15, 118, 110, 0.08);
  }

  .leave-hero-premium p {
       font-size: 18px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 34px;
    font-weight: 500;
  }

  /* =========================================
   LIGHT PREMIUM FEATURE GRID
========================================= */

  .leave-function-section {
    position: relative;
    overflow: hidden;
  }

  /* Heading */
  .leave-function-section .section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 60px;
    background: #E6FFFA;
    color: #0F766E;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
  }


  /* Card */
  .leave-function-section .item {
    position: relative;
    overflow: hidden;
    padding: 30px 15px;
    border-radius: 20px;
    border-radius: 28px;
    transition: all .35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 0px 0px rgb(96 96 96 / 7%);
  }

  /* Hover */
  .leave-function-section .item:hover {
    transform: translateY(-10px);
  }

  /* Different Card Backgrounds */
  .leave-function-section .col-xl-3:nth-child(1) .item,
  .leave-function-section .col-xl-3:nth-child(7) .item {
    background: #EEF4FB;
  }

  .leave-function-section .col-xl-3:nth-child(2) .item,
  .leave-function-section .col-xl-3:nth-child(8) .item {
    background: #EDF8F2;
  }

  .leave-function-section .col-xl-3:nth-child(3) .item,
  .leave-function-section .col-xl-3:nth-child(5) .item {
    background: #FBF4E8;
  }

  .leave-function-section .col-xl-3:nth-child(4) .item,
  .leave-function-section .col-xl-3:nth-child(6) .item {
    background: #FAEEF1;
  }

  /* Soft Circle */
  .leave-function-section .item::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Circle Colors */
  .leave-function-section .col-xl-3:nth-child(1) .item::before,
  .leave-function-section .col-xl-3:nth-child(7) .item::before {
    background: #D8EAFE;
  }

  .leave-function-section .col-xl-3:nth-child(2) .item::before,
  .leave-function-section .col-xl-3:nth-child(8) .item::before {
    background: #D5F7E2;
  }

  .leave-function-section .col-xl-3:nth-child(3) .item::before,
  .leave-function-section .col-xl-3:nth-child(5) .item::before {
    background: #FBE7B1;
  }

  .leave-function-section .col-xl-3:nth-child(4) .item::before,
  .leave-function-section .col-xl-3:nth-child(6) .item::before {
    background: #FFD7DF;
  }

  /* Small Floating Dot */
  .leave-function-section .item::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    top: 70px;
    right: 90px;
  }

  /* Dot Colors */
  .leave-function-section .col-xl-3:nth-child(1) .item::after,
  .leave-function-section .col-xl-3:nth-child(7) .item::after {
    background: #B9D8FA;
  }

  .leave-function-section .col-xl-3:nth-child(2) .item::after,
  .leave-function-section .col-xl-3:nth-child(8) .item::after {
    background: #BFF0CF;
  }

  .leave-function-section .col-xl-3:nth-child(3) .item::after,
  .leave-function-section .col-xl-3:nth-child(5) .item::after {
    background: #F6DF9D;
  }

  .leave-function-section .col-xl-3:nth-child(4) .item::after,
  .leave-function-section .col-xl-3:nth-child(6) .item::after {
    background: #F7C0CB;
  }

  /* Icon */
  .leave-function-section .item i {
    position: relative;
    z-index: 2;
    width: 85px;
    height: 95px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: #0F172A;
  }

  /* SVG */
  .leave-function-section .item i svg {
    width: 42px;
    height: 42px;
  }

  /* Icon Colors */
  .leave-function-section .col-xl-3:nth-child(1) .item i,
  .leave-function-section .col-xl-3:nth-child(7) .item i {
    color: #60A5FA;
  }

  .leave-function-section .col-xl-3:nth-child(2) .item i,
  .leave-function-section .col-xl-3:nth-child(8) .item i {
    color: #4ADE80;
  }

  .leave-function-section .col-xl-3:nth-child(3) .item i,
  .leave-function-section .col-xl-3:nth-child(5) .item i {
    color: #F59E0B;
  }

  .leave-function-section .col-xl-3:nth-child(4) .item i,
  .leave-function-section .col-xl-3:nth-child(6) .item i {
    color: #FB7185;
  }

  /* Title */
  .leave-function-section .item h5 {
    position: relative;
    z-index: 2;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0;
  }


  /* ===========================
   PREMIUM LIGHT CTA SECTION
=========================== */

  .leave-cta-light {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at top left,
        rgba(255, 255, 255, 0.75) 0%,
        transparent 30%),
      linear-gradient(135deg,
        #C0F4E7 0%,
        #E8FFF8 45%,
        #ffffff 100%);
  }

  /* Grid */
  .leave-cta-light .cta-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: radial-gradient(circle at center,
        black 40%,
        transparent 90%);
  }

  /* Blur Orbs */
  .leave-cta-light .blur-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
  }

  .leave-cta-light .orb-1 {
    width: 240px;
    height: 240px;
    background: rgba(20, 184, 166, 0.18);
    top: 10%;
    left: 4%;
  }

  .leave-cta-light .orb-2 {
    width: 180px;
    height: 180px;
    background: rgba(14, 165, 233, 0.10);
    bottom: 10%;
    right: 8%;
  }

  /* Content */
  .leave-cta-light .cta-content {
    position: relative;
    z-index: 5;
    padding-right: 30px;
  }

  .leave-cta-light .cta-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 60px;
    background: rgba(20, 184, 166, 0.10);
    color: #0F766E;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .leave-cta-light h2 {
    line-height: 1.08;
    color: #0F172A;
    margin-bottom: 24px;
  }

  .leave-cta-light p {
    color: #475569;
    margin-bottom: 18px;
  }

  .leave-cta-light .cta-sub-text {
    margin-bottom: 38px;
  }


  .cta-leave-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 22px;
    line-height: 45px;
    border-radius: 6px;
    background: #5433BE;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all .35s ease;
    box-shadow: 0 18px 40px rgb(20 27 184 / 20%);
    border: 0px;
  }

  .cta-leave-btn-primary:hover {
    transform: translateY(-4px);
    color: #fff;
  }



  /* Image */
  .leave-cta-light .cta-image-wrap {
    position: relative;
    z-index: 5;
  }

  .leave-cta-light .cta-image-card {
    padding: 18px;
  }

  .leave-cta-light .cta-image-card img {
    width: 100%;
    border-radius: 24px;
    display: block;
  }

  /* Floating Stats */
  .leave-cta-light .floating-stats {
    position: absolute;
    padding: 10px 15px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    text-align: center;
  }

  .leave-cta-light .floating-stats h4 {
    font-size: 24px;
    font-weight: 800;
    color: #0F766E;
    margin-bottom: 4px;
  }

  .leave-cta-light .floating-stats span {
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
  }

  /* Positions */
  .leave-cta-light .stats-1 {
    top: -20px;
    left: -40px;
  }

  .leave-cta-light .stats-2 {
    top: 18%;
    right: -40px;
  }

  .leave-cta-light .stats-3 {
    bottom: 18%;
    left: -50px;
  }

  .leave-cta-light .stats-4 {
    bottom: -20px;
    right: 0;
  }

  /* FLOATING ANIMATION */

  .leave-cta-light .floating-stats {
    animation: floatingCard 5s ease-in-out infinite;
    will-change: transform;
  }

  /* Different delays for natural movement */
  .leave-cta-light .stats-1 {
    animation-delay: 0s;
  }

  .leave-cta-light .stats-2 {
    animation-delay: 1s;
  }

  .leave-cta-light .stats-3 {
    animation-delay: 2s;
  }

  .leave-cta-light .stats-4 {
    animation-delay: 3s;
  }

  /* Animation Keyframes */
  @keyframes floatingCard {

    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-12px);
    }

    100% {
      transform: translateY(0px);
    }

  }



  /* ==================================
   PREMIUM DARK LEAVE ALERT SECTION
================================== */

  .leave-alert-section {
    position: relative;
    overflow: hidden;
    background: url(../../contents/images/leave-cta-bg.webp) center center / cover no-repeat;
  }

  /* Heading */
  .leave-alert-section h2 {
    color: #000;
    margin-bottom: 15px;
  }

  /* Main Text */
  .leave-alert-section .lead-text {
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
  }




  .ds-leave-about-section {
    position: relative;
    background: #F7F8FE;
    overflow: hidden;
  }
  
  .ds-leave-about-section .card {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    height: 100%;
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 18px 40px rgb(108 109 109 / 9%);
    display: flex;
    flex-direction: column;
  }

  .ds-leave-about-section .card img {
    /* margin-top: auto; */
  }

  .ds-leave-about-section .card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px !important;
        color: #000000;
  }

  .ds-leave-about-section .card .leave-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 20px;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    width: fit-content;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(15, 118, 110, 0.08);
  }

  .leave-policies {
    color: #5433BE;
    background: #5433BE14;
    border: 1px solid rgb(84 51 190 / 22%);
  }

  .leave-self-service {
    color: #9D5229;
    background: #9D522914;
    border: 1px solid #9d52293b;
  }

  .leave-approval {
    color: #0B6E6E;
    background: #0B6E6E14;
    border: 1px solid #0b6e6e40;
  }

  .leave-lifecycle {
    color: #FF9933;
    background: #FF993314;
    border: 1px solid #ff99333d;
  }

  .leave-notifcation {
    color: #185FA5;
    background: #185FA514;
    border: 1px solid #185fa52b;
  }

  .ds-leave-about-section .ds-leave-about-content {
    padding-left: 40px;
  }

  .ds-section-subtitle {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(20, 184, 166, 0.12);
    color: var(--leave-primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .ds-leave-about-section .ds-leave-about-content h2 {
    line-height: 1.3;
    font-weight: 700;
    color: var(--leave-dark);
    margin-bottom: 16px;
  }

  .ds-leave-about-section .ds-leave-about-content p {
   font-size: 16px;
    line-height: 1.8;
    color: #323232;
    font-weight: 500;
    margin-bottom: 35px;
  }

  .ds-leave-about-section .ds-leave-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ds-leave-about-section .ds-check-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(20, 184, 166, 0.12);
    box-shadow: 0 18px 40px rgb(108 109 109 / 9%);
    transition: all 0.3s ease;
    height: 100%;
  }

  .ds-leave-about-section .ds-check-item:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 184, 166, 0.35);
  }

  .ds-leave-about-section .ds-check-icon {
    min-width: 55px;
    height: 55px;
    border-radius: 14px;
    background: linear-gradient(135deg, #14B8A6, #0EA5E9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(20, 184, 166, 0.25);
  }

  .ds-leave-about-section .ds-check-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--leave-dark);
  }

  .ds-leave-about-section .ds-leave-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .ds-leave-about-section .ds-leave-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
  }

  .ds-leave-about-section .ds-tick {
    width: 20px;
    height: 20px;
    min-width: 20px;
    /* border-radius: 8px;
    background: #6366F1;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1; */
  }

  .ds-leave-features {
    position: relative;
    background-color: #FFF;
    overflow: hidden;
  }

  .ds-leave-features .ds-appraisal-section-heading {
    position: relative;
    z-index: 2;
    margin: 0 auto 50px;
  }

  .ds-leave-features .ds-feature-card {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 35px 28px;
    border-radius: 24px;
    background: #ffffff;
        border: 1px solid #E2E8F0;
    transition: all 0.35s ease;
    overflow: hidden;
  }

  .ds-leave-features .ds-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 116, 232, 0.03) 0%,
        transparent 100%);
    opacity: 0;
    transition: all 0.35s ease;
  }

  .ds-leave-features .ds-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
  }

  .ds-leave-features .ds-feature-card:hover .ds-feature-icon {
    background: #5433BE;
    color: #fff;
  }

  .ds-leave-features .ds-feature-card:hover .ds-feature-icon img {
    filter: brightness(0) saturate(100%) invert(95%) sepia(8%) saturate(356%) hue-rotate(209deg) brightness(103%) contrast(96%);
  }

  .ds-leave-features .ds-feature-card:hover::before {
    opacity: 1;
  }


  .ds-leave-features .ds-feature-icon {
    width: 65px;
    height: 60px;
    border-radius: 15px;
    background: #F2EFFA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 14px 35px rgb(185 78 14 / 8%);
  }

  .ds-leave-features .ds-feature-icon i {
    color: #fff;
    font-size: 28px;
  }

  /* Text */

  .ds-leave-features .ds-feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
  }

  .ds-leave-features .ds-feature-card p {
       font-size: 14px;
    line-height: 1.8;
    margin: 0;
    color: #344054;
    font-weight: 500;
  }

  .ds-leave-features .ds-feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 4px;
    background: #5433BE;
    transition: width 0.35s ease;
  }

  .ds-leave-features .ds-feature-card:hover::after {
    width: 100%;
  }

  /* ==========================================
   Workflow Arrow Line
========================================== */

  .ds-leave-workflow-section {
    position: relative;
    background: #081c1b;
    overflow: hidden;
    z-index: 1;
  }

  .ds-leave-workflow-section::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    background: rgba(20, 184, 166, 0.08);
    border-radius: 50%;
    top: -220px;
    right: -180px;
  }

  .ds-leave-workflow-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(15, 118, 110, 0.12);
    border-radius: 50%;
    bottom: -180px;
    left: -150px;
  }

  /* Heading */

  .ds-leave-workflow-section .ds-workflow-heading {
    max-width: 760px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 2;
  }

  .ds-leave-workflow-section .ds-workflow-subtitle {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(20, 184, 166, 0.12);
    color: var(--leave-accent);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
  }

  .ds-leave-workflow-section .ds-workflow-heading h2 {
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
  }

  .ds-leave-workflow-section .ds-workflow-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
  }

  /* Workflow Wrapper */

  .ds-leave-workflow-section .ds-workflow-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    z-index: 2;
  }

  /* Cards */

  .ds-leave-workflow-section .ds-workflow-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 2;
  }

  .ds-leave-workflow-section .ds-workflow-card:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 184, 166, 0.4);
    background: rgba(255, 255, 255, 0.06);
  }


  .ds-leave-workflow-section .ds-workflow-card::after {
    content: "";
    position: absolute;
    top: 88px;
    right: -38px;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg,
        var(--leave-primary) 0%,
        var(--leave-accent) 100%);
    z-index: 3;
  }

  /* Arrow Head */
  .ds-leave-workflow-section .ds-workflow-card::before {
    content: "";
    position: absolute;
    top: 82px;
    right: -40px;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--leave-accent);
    border-right: 2px solid var(--leave-accent);
    transform: rotate(45deg);
    z-index: 4;
  }

  /* Remove Arrow on Last Card */
  .ds-leave-workflow-section .ds-workflow-card:last-child::after,
  .ds-leave-workflow-section .ds-workflow-card:last-child::before {
    display: none;
  }

  /* Step Number */

  .ds-leave-workflow-section .ds-workflow-number {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.12);
    color: var(--leave-accent);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Icon */

  .ds-leave-workflow-section .ds-workflow-icon {
    width: 80px;
    height: 75px;
    margin: 0 auto 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, #14B8A6, #0EA5E9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 15px 30px rgba(20, 184, 166, 0.25);
  }

  /* Content */

  .ds-leave-workflow-section .ds-workflow-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
  }

  .ds-leave-workflow-section .ds-workflow-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
  }

  /* Tablet */



  /* ==========================================
   Leave Management App Section
========================================== */

  .ds-leave-app-section {
    position: relative;
    background: #5433BE;
    overflow: hidden;
    z-index: 1;
  }

  .ds-leave-app-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    left: -130px;
    bottom: -50px;
  }

  .ds-leave-app-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    right: -120px;
    top: -100px;
  }

  /* Content */

  .ds-leave-app-section h2 {
    position: relative;
    line-height: 1.3;
    font-weight: 700;
    z-index: 2;
  }

  .ds-leave-app-section .ds-leave-app-text {
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    z-index: 2;
  }

  /* Store Buttons */

  .ds-leave-app-section .ds-leave-store-btns {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    z-index: 2;
  }

  .ds-leave-app-section .ds-leave-store-btns a {
    display: inline-block;
    transition: all 0.3s ease;
  }

  .ds-leave-app-section .ds-leave-store-btns a:hover {
    transform: translateY(-5px);
  }

  .ds-leave-app-section .ds-leave-store-btns img {
    height: 54px;
  }

  .ds-leave-app-section .appraisal-stats {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .ds-leave-app-section .appraisal-stats {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .ds-leave-app-section .appraisal-stat-card {
       /* background: rgba(255, 255, 255, 0.95); */
    min-width: 150px;
    padding: 8px 20px;
    border-radius: 16px;
    text-align: center;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    backdrop-filter: blur(8px);
    transition: all .35s ease;
    cursor: pointer;
    position: relative;
  }

  .ds-leave-app-section .appraisal-stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
  }



  .ds-leave-app-section .appraisal-stat-card h3 {
        color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;

  }

  .ds-leave-app-section .appraisal-stat-card p {
     margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
  }

  /* CTA Button */
  .leave-white-btn {
       display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 25px;
    line-height: 45px;
    background: #FFF;
    border: 0px;
    font-size: 16px; 
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    color: #5433BE; 
  }

  .leave-white-btn:hover {
    transform: translateY(-4px);
    color: #5433BE;
  }


  @media (max-width: 991px) {

    .ds-leave-about-section .ds-leave-about-content {
      padding-left: 0;
      margin-bottom: 40px;
    }

    .ds-leave-about-section .ds-leave-checklist {
      grid-template-columns: repeat(2, 1fr);
    }

    .leave-alert-section {
      padding: 70px 0;
    }

    .leave-alert-section .content-wrap {
      text-align: center;
    }

    .leave-alert-section .feature-item {
      text-align: left;
    }

    .ds-leave-features .ds-feature-card h4{
      margin-bottom: 12px;
    }

    .leave-cta-light .cta-content {
      padding-right: 0;
      margin-bottom: 60px;
      text-align: center;
    }

    .leave-cta-light .floating-stats {
      position: relative;
      inset: auto !important;
      margin: 18px auto 0;
    }

    .leave-function-section .item {
      min-height: 230px;
    }

    .ds-leave-app-section {
      text-align: center;
    }


    .ds-leave-app-section .ds-leave-store-btns {
      justify-content: center;
    }

    .ds-leave-app-section .ds-leave-app-image {
      margin-top: 50px;
    }


  }

  @media (max-width: 1199px) {

    .ds-leave-workflow-section .ds-workflow-wrapper {
      grid-template-columns: repeat(2, 1fr);
    }


    .ds-leave-workflow-section .ds-workflow-card::after {
      display: none;
    }

  }

  @media (max-width: 767px) {
    .ds-leave-workflow-section {
      padding: 70px 0;
    }

    .padd-right{
      padding-right: 0;
    }

    .ds-footer .bottom-links{
      justify-content: center;
    }

    .ds-leave-workflow-section .ds-workflow-heading h2 {
      font-size: 30px;
    }

    .leave-alert-section {
      padding: 50px 0;
    }

    .ds-leave-workflow-section .ds-workflow-wrapper {
      grid-template-columns: 1fr;
    }

    .ds-leave-workflow-section .ds-workflow-card {
      padding: 35px 22px;
    }

    .ds-leave-about-section .ds-check-item {
      padding: 18px;
    }

    .ds-leave-about-section .ds-leave-checklist {
      grid-template-columns: 1fr;
    }

    .ds-leave-app-section .ds-leave-app-section {
      padding: 70px 0 0;
    }


    .ds-leave-app-section .ds-leave-app-text {
      font-size: 16px;
    }

    .ds-leave-app-section .ds-leave-store-btns img {
      height: 48px;
    }

  }

  @media(max-width:576px) {

    .payroll-btn{
      font-size: 15px;
    }

    .leave-alert-section h2 {
      font-size: 34px;
    }

    .leave-alert-section .feature-item {
      flex-direction: column;
      align-items: flex-start;
    }

    .leave-cta-light .floating-stats {
      min-width: 100%;
    }

    .leave-function-section .item {
      min-height: 210px;
      padding: 35px 20px;
    }

    .leave-function-section .item h5 {
      font-size: 22px;
    }

  }

  /*********************Leave Software End ***********************/
  /*******************Performance apprisal software***************/
  .ds-appraisal-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(78.84deg, #FAEBE3 0%, #FDCCB2 100%);
  }

  /* .ds-appraisal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  .ds-appraisal-hero::after {
    content: "";
    position: absolute;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 24px;
  } */

  /* Floating performance cards */

  /* .ds-appraisal-hero .ds-performance-image::before {
    content: "Self Appraisal";
    position: absolute;
    top: 40px;
    left: -30px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #0074e8;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    animation: dsFloatCard 4s ease-in-out infinite;
  }

  .ds-appraisal-hero .ds-performance-image::after {
    content: "Team Growth +98%";
    position: absolute;
    right: -20px;
    bottom: 50px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #0074e8 0%, #1092ff 100%);
    color: #fff;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 20px 45px rgba(0, 116, 232, 0.25);
    animation: dsFloatCard 5s ease-in-out infinite;
  }

  @keyframes dsPulseShape {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.08);
    }

    100% {
      transform: scale(1);
    }
  }

  @keyframes dsFloatCard {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-10px);
    }

    100% {
      transform: translateY(0px);
    }
  } */


  .ds-appraisal-hero .ds-performance-content {
    position: relative;
    z-index: 2;
  }

  .ds-appraisal-hero .ds-performance-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid #EBB598;
    background: #FDCDB3;
    color: #9D5229;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .ds-performance-tagline{
        color: #9d5229 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
  }

  .ds-appraisal-hero .ds-performance-content h1 {
    line-height: 1.15;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
  }

  .ds-appraisal-hero .ds-performance-content h1 span {
    color: #9D5229;
    font-weight: 800;
  }

  .ds-appraisal-hero .ds-performance-content p {
    font-size: 18px;
    line-height: 30px;
    color: #000;
    margin-bottom: 30px;
  }

  .ds-appraisal-hero .ds-performance-btns {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 45px;
    flex-wrap: wrap;
  }

  .ds-appraisal-hero .ds-performance-image {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .ds-appraisal-hero .ds-performance-image img {
    max-width: 100%;
  }

  .ds-appraisal-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 22px;
    line-height: 45px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
    border: 0px;
  }

  .ds-appraisal-btn-primary {
    background: #9D5229;
    color: #fff;
    box-shadow: 0 12px 30px #9d522975;
  }

  .ds-appraisal-btn-primary:hover {
    transform: translateY(-3px);
    color: #fff;
  }

  .ds-appraisal-section-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(0, 116, 232, 0.1);
    color: #0074e8;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .ds-appraisal-section-heading {
    margin-bottom: 50px;
  }

  .ds-appraisal-section-heading h2 {
    line-height: 42px;
    margin-bottom: 10px;
  }

  .ds-performance-about {
    position: relative;
    background: #ffffff;
    overflow: hidden;
  }

  /* .ds-performance-about::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(rgba(0, 116, 232, 0.08), transparent 70%);
  }

  .ds-performance-about::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -60px;
    width: 260px;
    height: 260px;
    background-image:
      linear-gradient(rgba(0, 116, 232, 0.06) 2px, transparent 2px),
      linear-gradient(90deg, rgba(0, 116, 232, 0.06) 2px, transparent 2px);
    background-size: 28px 28px;
    transform: rotate(-10deg);
  } */
  .ds-performance-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
  }

  .ds-performance-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
  }

  .ds-tick {
    width: 20px;
    height: 20px;
    min-width: 20px;
    /* border-radius: 8px;
    background: #A85D2A;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1; */
  }

  .ds-performance-about .ds-performance-item span {
    color: #333;
  }

  /* Image Side */

  .ds-performance-about .ds-performance-about-image {
    position: relative;
    padding-right: 40px;
  }

  .ds-performance-about .ds-about-main-img {
    position: relative;
    z-index: 2;
  }

  .ds-performance-about .ds-about-main-img img {
    width: 100%;
    box-shadow: 1px 1px 50px rgb(0 0 0 / 6%);
    border-radius: 15px;
  }

  .ds-performance-about .ds-about-floating-card {
    position: absolute;
    right: 0;
    bottom: 0px;
    z-index: 3;
    width: 220px;
    padding: 24px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: dsAboutFloat 4s ease-in-out infinite;
  }

  .ds-about-floating-card h4 {
    font-weight: 800;
    color: #0074e8;
    margin-bottom: 10px;
  }

  .ds-performance-about .ds-about-floating-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #5f6b7a;
  }

  .ds-performance-about .ds-performance-about-content {
    position: relative;
    z-index: 2;
  }

  .ds-performance-about .ds-performance-about-content h2 {
    line-height: 1.25;
    font-weight: 700;
    color: #121212;
    margin-bottom: 16px;
  }

  .stay-com-con h2{
    margin-bottom: 10px;
  }

  .ds-performance-about .ds-performance-about-content p {
        font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
    color: #323232;
    font-weight: 500;
  }

  .ds-performance-about .ds-about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: #f7faff;
    border: 1px solid rgba(0, 116, 232, 0.08);
    font-size: 15px;
    font-weight: 600;
    color: #121212;
    transition: all 0.35s ease;
  }

  .ds-performance-about .ds-about-feature:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  }

  .ds-performance-about .ds-about-feature i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0074e8 0%, #1092ff 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  @keyframes dsAboutFloat {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-10px);
    }

    100% {
      transform: translateY(0px);
    }
  }




  .ds-performance-features {
    position: relative;
    background-color: #F8FAFC;
    overflow: hidden;
  }

  .ds-performance-features .ds-appraisal-section-heading {
    position: relative;
    z-index: 2;
    margin: 0 auto 50px;
  }

  .ds-performance-features .ds-feature-card {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 35px 28px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 116, 232, 0.08);
    transition: all 0.35s ease;
    overflow: hidden;
  }

  .ds-performance-features .ds-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 116, 232, 0.03) 0%,
        transparent 100%);
    opacity: 0;
    transition: all 0.35s ease;
  }

  .ds-performance-features .ds-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
  }

  .ds-performance-features .ds-feature-card:hover .ds-feature-icon {
    background: #9D5229;
    color: #fff;
  }

  .ds-performance-features .ds-feature-card:hover .ds-feature-icon img {
    filter: brightness(0) saturate(100%) invert(92%) sepia(14%) saturate(450%) hue-rotate(315deg) brightness(102%) contrast(97%);

  }

  .ds-performance-features .ds-feature-card:hover::before {
    opacity: 1;
  }


  .ds-performance-features .ds-feature-icon {
    width: 65px;
    height: 60px;
    border-radius: 15px;
    background: #FBE6DB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 14px 35px rgb(185 78 14 / 8%);
  }

  .ds-performance-features .ds-feature-icon i {
    color: #fff;
    font-size: 28px;
  }

  /* Text */

  .ds-performance-features .ds-feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 16px;
    line-height: 28px;
  }

  .ds-performance-features .ds-feature-card p {
       font-size: 14px;
    line-height: 24px;
    color: #344054;
    margin: 0;
    font-weight: 500;
  }

  .ds-performance-features .ds-feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 4px;
    background: #9D5229;
    transition: width 0.35s ease;
  }

  .ds-performance-features .ds-feature-card:hover::after {
    width: 100%;
  }




  .ds-performance-workflow {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(30, 94, 255, 0.25), transparent 35%), radial-gradient(circle at 85% 15%, rgba(124, 58, 237, 0.18), transparent 35%), radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.08), transparent 40%), linear-gradient(135deg, rgb(3, 7, 18) 0%, rgb(11, 31, 59) 40%, rgb(30, 58, 138) 100%);
  }

  /* Top Glow */

  .ds-performance-workflow::before {
    content: "";
    position: absolute;
    top: -220px;
    left: -140px;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background:
      radial-gradient(circle,
        rgba(0, 116, 232, 0.22) 0%,
        rgba(0, 116, 232, 0.05) 45%,
        transparent 72%);
  }

  /* Bottom Grid Shape */

  .ds-performance-workflow::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -80px;
    width: 340px;
    height: 340px;
    opacity: 0.18;
    transform: rotate(10deg);

    background-image:
      linear-gradient(rgba(255, 255, 255, 0.12) 2px, transparent 2px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.12) 2px, transparent 2px);

    background-size: 28px 28px;
  }




  .ds-performance-workflow .ds-appraisal-section-heading p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
  }


  .ds-performance-workflow .ds-workflow-card {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px 28px;
    border-radius: 26px;
    background: rgb(255 255 255);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s;
    overflow: hidden;
  }

  .ds-performance-workflow .ds-workflow-card:hover {
    transform: translateY(-10px);
    background: rgb(255 255 255);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
  }

  .ds-performance-workflow .ds-workflow-number {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 42px;
    font-weight: 800;
    color: rgb(133 131 131 / 26%);
    line-height: 1;
  }


  .ds-performance-workflow .ds-workflow-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0074e8 0%, #1ca7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 18px 40px rgba(0, 116, 232, 0.35);
  }

  .ds-performance-workflow .ds-workflow-icon i {
    color: #fff;
    font-size: 30px;
  }


  .ds-performance-workflow .ds-workflow-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
  }

  .ds-performance-workflow .ds-workflow-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgb(23 22 22);
    margin: 0;
  }

  .ds-performance-workflow .ds-workflow-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #0074e8 0%, #1ca7ff 100%);
    transition: height 0.35s ease;
  }

  .ds-performance-workflow .ds-workflow-card:hover::before {
    height: 100%;
  }





  .ds-appraisal-core-features {
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;
  }

  /* Background Glow */

  /* .ds-appraisal-core-features::before {
    content: "";
    width: 843px;
    height: 546px;
    background-color: #376BFC;
    position: absolute;
    right: 250px;
    top: 187px;
    opacity: 0.45;
    filter: blur(127.5px);
    z-index: 0;
    animation: blue-motion 4s ease-in-out infinite;
  }


  .ds-appraisal-core-features::after {
    content: "";
    width: 610px;
    height: 470px;
    background-color: #E84FAB;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.45;
    filter: blur(127.5px);
    z-index: 0;
    animation: pink-motion 4s ease-in-out infinite;
  } */

  /* Section Heading */



  .ds-appraisal-core-features .ds-appraisal-section-heading h2 {

    line-height: 1.25;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
  }

  .ds-appraisal-core-features .ds-appraisal-section-heading p {
    font-size: 17px;
    line-height: 1.8;
    color: rgb(0 0 0 / 72%);
    margin: 0;
  }


  .ds-appraisal-core-features .ds-core-row {
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
  }

  .ds-appraisal-core-features .ds-core-user-img {
    position: relative;
  }

  .ds-appraisal-core-features .ds-core-user-img img {
    width: auto;
    margin: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }


  .ds-appraisal-core-features .ds-core-feature-card {
    position: relative;
    padding: 25px;
    border-radius: 20px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.35s ease;
  }

  .ds-appraisal-core-features .ds-core-feature-card:hover {
    transform: translateY(-8px);
    background: rgb(255, 255, 255);
    box-shadow: 0 24px 60px rgb(0 0 0 / 13%);
  }

  .ds-appraisal-core-features .ds-core-feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, #0074e8 0%, #1ca7ff 100%);
    transition: height 0.35s ease;
  }

  .ds-appraisal-core-features .ds-core-feature-card:hover::before {
    height: 100%;
  }

  .ds-appraisal-core-features .ds-core-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
  }

  .ds-appraisal-core-features .ds-core-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0;
  }

  .ds-appraisal-core-features .ds-core-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0074e8 0%, #1ca7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(0, 116, 232, 0.3);
  }

  .ds-appraisal-core-features .ds-core-icon i {
    color: #fff;
    font-size: 28px;
  }


  .ds-appraisal-core-features .ds-core-feature-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .ds-appraisal-core-features .ds-core-feature-card ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.8;
    color: rgb(0 0 0 / 86%);
  }


  .ds-appraisal-core-features .ds-core-feature-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 116, 232, 0.16);
    color: #5bb2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
  }


  .ds-appraisal-cta {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(30, 94, 255, 0.25), transparent 35%), radial-gradient(circle at 85% 15%, rgba(124, 58, 237, 0.18), transparent 35%), radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.08), transparent 40%), linear-gradient(135deg, rgb(3, 7, 18) 0%, rgb(11, 31, 59) 40%, rgb(30, 58, 138) 100%);
  }

  /* Background Glow */

  .ds-appraisal-cta::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -140px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background:
      radial-gradient(circle,
        rgba(0, 116, 232, 0.24) 0%,
        rgba(0, 116, 232, 0.05) 45%,
        transparent 72%);
  }

  /* Decorative Grid */

  .ds-appraisal-cta::after {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 360px;
    height: 360px;
    opacity: 0.16;
    transform: rotate(-12deg);

    background-image:
      linear-gradient(rgba(255, 255, 255, 0.12) 2px, transparent 2px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.12) 2px, transparent 2px);

    background-size: 30px 30px;
  }

  /* Content */

  .ds-appraisal-cta-content {
    position: relative;
    z-index: 2;
  }

  .ds-appraisal-cta .ds-cta-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(0, 116, 232, 0.16);
    color: #5bb2ff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .ds-appraisal-cta .ds-appraisal-cta-content h2 {
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
  }

  .ds-appraisal-cta .ds-appraisal-cta-content p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 20px;
  }



  .ds-appraisal-cta .ds-appraisal-cta-image {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .ds-appraisal-cta .ds-appraisal-cta-image img {
    width: 100%;
  }



  .ds-why-choose-appraisal {
    overflow: hidden;
    background: #F7F8FE;
  }

  .ds-why-choose-appraisal .ds-why-appraisal-image {
    position: relative;
    z-index: 2;
  }

  .ds-why-choose-appraisal .ds-why-appraisal-image img {
    width: 100%;
    box-shadow: 1px 1px 50px rgb(0 0 0 / 6%);
    border-radius: 15px;
  }

  /* .ds-why-choose-appraisal .ds-why-floating-box {
    position: absolute;
    right: -44px;
    bottom: 0px;
    width: 220px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 116, 232, 0.08);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
    animation: dsFloatBox 4s ease-in-out infinite;
  } */

  .ds-why-choose-appraisal .ds-why-floating-box h4 {
    font-size: 42px;
    font-weight: 800;
    color: #0074e8;
    margin-bottom: 10px;
  }

  .ds-why-choose-appraisal .ds-why-floating-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #667085;
  }

  /* Content */

  .ds-why-choose-appraisal .ds-why-appraisal-content {
    position: relative;
    z-index: 2;
    padding-left: 30px;
  }

  .ds-why-choose-appraisal .ds-why-appraisal-content h2 {
    line-height: 1.2;
    font-weight: 700;
    color: #121212;
    margin-bottom: 16px;
  }

  .ds-why-choose-appraisal .ds-why-appraisal-content p {
   font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
    color: #344054;
    font-weight: 500;
  }



  /* Animation */

  @keyframes dsFloatBox {

    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-10px);
    }

    100% {
      transform: translateY(0px);
    }
  }

  .ds-performance-appraisal-cta {
    background: #9D5229;
    overflow: hidden;
    position: relative;
  }

  .ds-performance-appraisal-cta::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    right: -130px;
    top: -50px;
  }

  /* Right curved shape */
  .ds-performance-appraisal-cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    right: -120px;
    bottom: -100px;
  }

  .ds-performance-appraisal-cta .appraisal-stats {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .ds-performance-appraisal-cta .appraisal-stats {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .ds-performance-appraisal-cta .appraisal-stat-card {
       /* background: rgba(255, 255, 255, 0.95); */
    min-width: 150px;
    padding: 8px 20px;
    border-radius: 16px;
    text-align: center;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    backdrop-filter: blur(8px);
    transition: all .35s ease;
    cursor: pointer;
    position: relative;
  }

  .ds-performance-appraisal-cta .appraisal-stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
  }



  .ds-performance-appraisal-cta .appraisal-stat-card h3 {
        color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
  }

  .ds-performance-appraisal-cta .appraisal-stat-card p {
       margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
  }

  /* CTA Button */
  .appraisal-white-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 25px;
    line-height: 45px;
    background: #FFF;
    border: 0px;
    color: #9D5229;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
   
  }

  .appraisal-white-btn:hover {
    transform: translateY(-4px);
    color: #9D5229;
  }

  /* Responsive */

  @media (max-width: 991px) {


    .ds-appraisal-hero .ds-appraisal-hero {
      text-align: center;
    }

    .ds-about-main-img{
      margin-top: 16px;
    }

    .payroll-feature-deep-dive h2 br, .payroll-feature-deep-dive p br{
      display: none;
    }


    .ds-appraisal-hero .ds-performance-content p {
      margin-left: auto;
      margin-right: auto;
    }

    .ds-appraisal-hero .ds-performance-btns {
      justify-content: center;
    }

    .ds-appraisal-hero .ds-performance-image {
      margin-top: 30px;
    }

    .ds-performance-about .ds-performance-about-image {
      padding-right: 0;
      /* margin-bottom: 50px; */
    }

    .ds-appraisal-core-features .ds-core-user-img {
      margin-bottom: 25px;
      align-items: center;
      justify-content: center;
      display: flex;

    }

    .ds-appraisal-core-features .ds-core-user-img img {
      height: 260px;
    }

    .ds-appraisal-cta .ds-appraisal-cta-content {
      margin-bottom: 50px;
      text-align: center;
    }


    .ds-appraisal-cta .ds-appraisal-cta-btns {
      justify-content: center;
    }

    .ds-performance-about .ds-about-floating-card {
      right: 20px;
      bottom: 20px;
    }

    .ds-appraisal-section-heading {
      margin-bottom: 30px;
    }


    .ds-why-choose-appraisal .ds-why-appraisal-content {
      padding-left: 0;
      /* margin-top: 50px; */
    }

    .ds-why-choose-appraisal .ds-why-floating-box {
      left: 20px;
    }
  }

  @media (max-width: 767px){
      .ds-performance-features .ds-appraisal-section-heading{
      margin-bottom: 20px;
    }

    .ds-performance-features .ds-feature-card h4{
      color: #121212;
      margin-bottom: 14px;
      line-height: 16px;
      font-size: 16px;
    }

    .ds-performance-item{
      font-size: 14px;
    }
  }

  @media (max-width: 575px) {

    .ds-performance-content p {
      font-size: 16px;
      line-height: 1.7;
      color: #000;
    }

    .ds-appraisal-btn-primary {
      width: auto;
    }

    .ds-appraisal-hero .ds-stat-box {
      width: 100%;
    }

    .ds-appraisal-hero::before {
      right: -78px;
      top: 390px;
    }

    .ds-appraisal-hero::after {
      right: auto;
      left: 210px;
      top: 190px;
    }

    .ds-performance-about .ds-performance-about-content p {
      font-size: 16px;
      line-height: 1.8;
    }

    .ds-performance-about .ds-about-floating-card {
      position: relative;
      width: fit-content;
      right: auto;
      bottom: auto;
      padding-top: 20px;
      margin: auto;
    }

    .ds-performance-features .ds-appraisal-section-heading p {
      font-size: 16px;
      line-height: 1.7;
    }

    .ds-performance-features .ds-feature-card {
      padding: 28px 22px;
    }

    .ds-performance-features .ds-feature-icon {
      width: 64px;
      height: 64px;
    }

    .ds-performance-features .ds-feature-icon i {
      font-size: 24px;
    }

    /* .ds-performance-features .ds-feature-card h4 {
      font-size: 20px;
    } */

    .ds-performance-workflow .ds-appraisal-section-heading p {
      font-size: 16px;
      line-height: 1.7;
    }

    .ds-performance-workflow .ds-workflow-card {
      padding: 32px 24px;
    }

    .ds-performance-workflow .ds-workflow-icon {
      width: 68px;
      height: 68px;
    }

    .ds-performance-workflow .ds-workflow-icon i {
      font-size: 26px;
    }

    .ds-performance-workflow .ds-workflow-card h4 {
      font-size: 20px;
    }

    .ds-appraisal-core-features .ds-appraisal-section-heading p {
      font-size: 16px;
      line-height: 1.7;
    }

    .ds-appraisal-core-features .ds-core-feature-card {
      padding: 28px 22px;
    }

    .ds-appraisal-core-features .ds-core-title {
      flex-direction: column;
      align-items: flex-start;
    }

    .ds-appraisal-core-features .ds-core-title h3 {
      font-size: 20px;
    }

    .ds-appraisal-core-features .ds-core-icon {
      width: 64px;
      height: 64px;
    }

    .ds-appraisal-core-features .ds-core-icon i {
      font-size: 24px;
    }

    .ds-appraisal-cta .ds-appraisal-cta-content p {
      font-size: 16px;
      line-height: 1.8;
    }

    .ds-appraisal-hero .ds-performance-image::after {
      right: -2px;
      bottom: -27px;
    }

    .ds-appraisal-hero .ds-performance-image::before {
      top: -35px;
      left: 0px;
    }

    .ds-why-choose-appraisal .ds-why-appraisal-content p {
      font-size: 16px;
      line-height: 1.8;
    }

    .ds-why-choose-appraisal .ds-why-feature-item {
      font-size: 14px;
      padding: 16px 18px;
    }

    .ds-why-choose-appraisal .ds-why-floating-box {
      position: relative;
      width: fit-content;
      left: auto;
      bottom: auto;
      margin-top: 20px;
    }


  }

  /****************************Performance Appraisal Management Software end***************/
  /******************PAYROLL Outsourcing***********************/

  /* =========================
   PAYROLL HERO SECTION
========================= */

  .ds-payroll-outsourcing-hero {
    background: radial-gradient(circle at 15% 20%, rgba(30, 94, 255, .25), transparent 35%), radial-gradient(circle at 85% 15%, rgba(124, 58, 237, .18), transparent 35%), radial-gradient(circle at 50% 80%, rgba(255, 255, 255, .08), transparent 40%), linear-gradient(135deg, #030712 0%, #0B1F3B 40%, #1E3A8A 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
  }

  .ds-payroll-outsourcing-hero .container {
    position: relative;
    z-index: 2;
  }

  .ds-payroll-outsourcing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  /* .ds-payroll-outsourcing-hero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25), transparent 70%);
    z-index: 1;
  } */

  .ds-payroll-outsourcing-hero::after {
    animation: floatGlow 6s ease-in-out infinite;
  }

  @keyframes floatGlow {

    0%,
    100% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(20px);
    }
  }

  .ds-payroll-outsourcing-hero .ds-payroll-outsourcing-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
  }

  .ds-payroll-outsourcing-shape.shape-1 {
    top: 12%;
    left: 6%;
    width: 90px;
    height: 110px;
    border: 2px solid #ffffff;
    border-radius: 16px;
    transform: rotate(-12deg);
  }

  .ds-payroll-outsourcing-shape.shape-1::before,
  .ds-payroll-outsourcing-shape.shape-1::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    height: 2px;
    background: #ffffff;
  }

  .ds-payroll-outsourcing-shape.shape-1::before {
    top: 35px;
  }

  .ds-payroll-outsourcing-shape.shape-1::after {
    top: 55px;
  }

  .ds-payroll-outsourcing-shape.shape-2 {
    top: 18%;
    right: 12%;
    width: 70px;
    height: 70px;
    border: 2px dashed #ffffff;
    border-radius: 50%;
  }

  .ds-payroll-outsourcing-shape.shape-2::before {
    content: "₹";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
  }

  .ds-payroll-outsourcing-shape.shape-3 {
    bottom: 18%;
    left: 12%;
    width: 85px;
    height: 100px;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.7);
  }

  .ds-payroll-outsourcing-shape.shape-3::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 14px;
    width: 55px;
    height: 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
  }

  .ds-payroll-outsourcing-shape.shape-3::after {
    content: "";
    position: absolute;
    bottom: 16px;
    left: 14px;
    width: 55px;
    height: 40px;
    background-image:
      radial-gradient(circle, #ffffff 20%, transparent 22%);
    background-size: 18px 18px;
  }

  .ds-payroll-outsourcing-shape.shape-4 {
    right: 8%;
    bottom: 12%;
    width: 120px;
    height: 60px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    transform: skew(-20deg);
  }

  .ds-payroll-outsourcing-hero .container {
    position: relative;
    z-index: 2;
  }

  .ds-payroll-outsourcing-hero .ds-payroll-outsourcing-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    backdrop-filter: blur(6px);
    letter-spacing: 0.3px;
  }

  .ds-payroll-outsourcing-hero .ds-payroll-outsourcing-title {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .ds-payroll-outsourcing-hero .ds-payroll-outsourcing-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.932);
    margin-bottom: 25px;
    max-width: 95%;
  }

  .ds-payroll-outsourcing-hero .ds-payroll-outsourcing-btns {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .ds-payroll-outsourcing-hero .ds-payroll-outsourcing-btn {
    background: linear-gradient(90deg, #0074e8 0%, #1092ff 100%);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 116, 232, 0.25);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .ds-payroll-outsourcing-hero .ds-payroll-outsourcing-btn:hover {
    background: #ffffff;
    color: #0B1F3B;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  }


  /* Heading */
  .ds-payroll-outsourcing-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 116, 232, 0.1);
    color: #0074e8;
    font-weight: 600;
    font-size: 13px;
    border-radius: 20px;
    margin-bottom: 10px;
  }





  .ds-payroll-outsourcing-btn {
    background: linear-gradient(90deg, #0074e8 0%, #1092ff 100%);
    color: #fff;
    border: none;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgb(16 59 185 / 30%);
  }

  .ds-payroll-outsourcing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 58, 185, 0.447);
    background: linear-gradient(90deg, #0074e8 0%, #1092ff 100%);
  }

  /* SECONDARY BUTTON */
  .ds-payroll-outsourcing-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 26px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .ds-payroll-outsourcing-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #103ab9;
  }




  .ds-payroll-benefits-outsourcing {
    padding: 90px 0;
    background-color: #F5F8FF;
  }



  .ds-payroll-benefits-outsourcing .ds-benefit-head h2 {
    font-weight: 700;
    color: #000000;
  }

  .ds-payroll-benefits-outsourcing .ds-benefit-head p {
    color: #6b7280;
    max-width: 600px;
    margin: 10px auto 0;
  }

  /* Premium Card */
  .ds-payroll-benefits-outsourcing .premium-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(27, 109, 251, 0.2);
    border-radius: 15px;
    padding: 18px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
  }


  /* Hover effect */
  .ds-payroll-benefits-outsourcing .premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgb(16 59 185 / 15%);
  }

  /* Icon */
  .ds-payroll-benefits-outsourcing .premium-card .icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 15px;
    /* background: linear-gradient(135deg, #0074e8 0%, #1ca7ff 100%); */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 20%;
    /* box-shadow: 0 10px 25px rgb(16 59 185 / 30%); */
  }

  /* Text */
  .ds-payroll-benefits-outsourcing .premium-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
  }

  .ds-payroll-benefits-outsourcing .premium-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
  }




  .ds-payroll-outsourcing-services {
    background: linear-gradient(135deg, #0A2A43 0%, #071D30 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }

  /* subtle glow background */
  .ds-payroll-outsourcing-services::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 70%);
  }

  .ds-payroll-outsourcing-services::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 70%);
  }

  .ds-payroll-outsourcing-services .container {
    position: relative;
    z-index: 2;
  }

  .ds-payroll-outsourcing-services .ds-service-head h2 {
    font-weight: 700;
    color: #ffffff;
  }

  .ds-payroll-outsourcing-services .ds-service-head p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 10px auto 0;
  }

  .ds-payroll-outsourcing-services .service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #1e5eff39;
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  /* hover glow */
  .ds-payroll-outsourcing-services .service-card:hover {
    transform: translateY(-10px);
    border-color: #1E5EFF;
    box-shadow: 0 10px 25px rgb(16 59 185 / 30%);
  }

  /* icon */
  .ds-payroll-outsourcing-services .service-card .icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1E5EFF 0%, #0B1F3B 100%);
    color: #fff;
    font-size: 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgb(16 59 185 / 30%);
  }

  /* text */
  .ds-payroll-outsourcing-services .service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
  }

  .ds-payroll-outsourcing-services .service-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .ds-payroll-outsourcing-services .service-card ul {
    padding-left: 18px;
    margin: 0;
  }

  .ds-payroll-outsourcing-services .service-card ul li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
  }

  .ds-payroll-outsourcing-services .service-card ul li::marker {
    color: #1E5EFF;
  }




  .ds-payroll-outsourcing-how-it-works {
    background-color: #F5F8FF;
  }


  .ds-payroll-outsourcing-how-it-works .ds-how-head h2 {
    font-weight: 700;
    color: #000000;
  }

  .ds-payroll-outsourcing-how-it-works .ds-how-head p {
    color: #6b7280;
    max-width: 600px;
    margin: 10px auto 0;
  }

  /* CARD */
  .ds-payroll-outsourcing-how-it-works .how-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    position: relative;
    border: 1px solid #1e5eff39;
    transition: all 0.4s ease;
    height: 100%;
  }

  /* hover */
  .ds-payroll-outsourcing-how-it-works .how-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgb(16 59 185 / 30%);
    border-color: #1e5eff65;
  }

  /* STEP NUMBER */
  .ds-payroll-outsourcing-how-it-works .how-card .step {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 12px;
    font-weight: 700;
    color: #1E5EFF;
    background: rgba(115, 115, 115, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
  }

  /* ICON */
  .ds-payroll-outsourcing-how-it-works .how-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #1E5EFF 0%, #0B1F3B 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgb(16 59 185 / 30%);
  }

  /* TEXT */
  .ds-payroll-outsourcing-how-it-works .how-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
  }

  .ds-payroll-outsourcing-how-it-works .how-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
  }



  .ds-payroll-outsourcing-features-split {
    background: #ffffff;
  }



  .ds-payroll-outsourcing-features-split .ds-features-head h2 {
    font-weight: 700;
    color: #000000;
  }

  .ds-payroll-outsourcing-features-split .ds-features-head p {
    color: #6b7280;
    margin-bottom: 30px;
  }

  /* FEATURE ITEMS */
  .ds-payroll-outsourcing-features-split .features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .ds-payroll-outsourcing-features-split .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
  }

  /* ICON */
  .ds-payroll-outsourcing-features-split .feature-item .icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: #eef4ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 12px;
    box-shadow: -2px 2px 25px rgb(79 80 82 / 14%);
    padding: 8px;
    border: 1px solid #00000014;
  }

  /* TEXT */
  .ds-payroll-outsourcing-features-split .feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
  }

  .ds-payroll-outsourcing-features-split .feature-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
  }

  /* IMAGE */
  .ds-payroll-outsourcing-features-split .ds-feature-img {
    max-width: 100%;
    /* animation: floatImage 4s ease-in-out infinite; */
  }





  .ds-payroll-outsourcing-industries {
    background: radial-gradient(circle at 15% 20%, rgba(30, 94, 255, .25), transparent 35%), radial-gradient(circle at 85% 15%, rgba(124, 58, 237, .18), transparent 35%), radial-gradient(circle at 50% 80%, rgba(255, 255, 255, .08), transparent 40%), linear-gradient(135deg, #030712 0%, #0B1F3B 40%, #1E3A8A 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }

  /* glow background */
  .ds-payroll-outsourcing-industries::before,
  .ds-payroll-outsourcing-industries::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
  }

  .ds-payroll-outsourcing-industries::before {
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 70%);
  }

  .ds-payroll-outsourcing-industries::after {
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 70%);
  }

  .ds-payroll-outsourcing-industries .container {
    position: relative;
    z-index: 2;
  }


  .ds-payroll-outsourcing-industries .ds-industry-head h2 {
    font-weight: 700;
    color: #ffffff;
  }

  .ds-payroll-outsourcing-industries .ds-industry-head p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 10px auto 40px;
  }

  /* GRID (LEFT SIDE) */
  .ds-payroll-outsourcing-industries .industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  /* CARD */
  .ds-payroll-outsourcing-industries .industry-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgb(255 255 255);
    border: 1px solid rgba(16, 58, 185, 0.15);
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    color: rgb(0 0 0 / 85%);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
  }

  /* hover */
  .ds-payroll-outsourcing-industries .industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgb(16 59 185 / 30%);
  }

  /* ICON */
  .ds-payroll-outsourcing-industries .industry-card .icon {
    width: 70px;
    height: 70px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    /* background: linear-gradient(135deg, #1E5EFF 0%, #0B1F3B 100%); */
    color: #10B981;
    border-radius: 10px;
  }

  /* IMAGE */
  .ds-payroll-outsourcing-industries .ds-industry-img {
    max-width: 85%;
    /* animation: floatImage 4s ease-in-out infinite; */
  }



  /* RESPONSIVE */
  @media (max-width: 991px) {
    .ds-payroll-outsourcing-industries .industry-grid {
      grid-template-columns: 1fr;
    }

    .ds-payroll-outsourcing-industries .ds-industry-head h2 {
      font-size: 30px;
    }
  }

  .ds-payroll-outsourcing-cta {
    background: radial-gradient(circle at 15% 20%, rgba(30, 94, 255, .25), transparent 35%), radial-gradient(circle at 85% 15%, rgba(124, 58, 237, .18), transparent 35%), radial-gradient(circle at 50% 80%, rgba(255, 255, 255, .08), transparent 40%), linear-gradient(135deg, #030712 0%, #0B1F3B 40%, #1E3A8A 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }

  /* glow background */
  .ds-payroll-outsourcing-cta::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 70%);
  }

  .ds-payroll-outsourcing-cta::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 70%);
  }

  .ds-payroll-outsourcing-cta .container {
    position: relative;
    z-index: 2;
  }



  /* TITLE */
  .ds-payroll-outsourcing-cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  /* TEXT */
  .ds-payroll-outsourcing-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 90%;
  }

  /* BUTTONS */
  .ds-payroll-outsourcing-cta .cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .ds-payroll-outsourcing-cta .cta-img {
    max-width: 100%;
  }



  .ds-payroll-outsourcing-why {
    color: #000000;
    background-color: #ffffff;
  }



  .ds-payroll-outsourcing-why .ds-why-head h2 {
    font-weight: 700;
  }

  .ds-payroll-outsourcing-why .ds-why-head p {
    color: #6b7280;
    max-width: 650px;
    margin: 10px auto 40px;
  }

  /* LIST */
  .ds-payroll-outsourcing-why .why-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  /* ITEM */
  .ds-payroll-outsourcing-why .why-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(16, 58, 185, 0.15);
    transition: 0.3s ease;
  }

  .ds-payroll-outsourcing-why .why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(16, 58, 185, 0.111);
    border-color: #1E5EFF;
  }

  /* ICON */
  .ds-payroll-outsourcing-why .why-item .icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, #1E5EFF 0%, #0B1F3B 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
  }

  /* TEXT */
  .ds-payroll-outsourcing-why .why-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000000;
  }

  .ds-payroll-outsourcing-why .why-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* IMAGE */
  .ds-payroll-outsourcing-why .why-img {
    max-width: 100%;
    animation: floatImage 4s ease-in-out infinite;
  }

  /* RESPONSIVE */
  @media (max-width: 991px) {
    .ds-payroll-outsourcing-hero {
      text-align: center;
    }

    .ds-payroll-outsourcing-hero .ds-payroll-outsourcing-title {
      font-size: 34px;
    }

    .ds-payroll-outsourcing-hero .ds-payroll-outsourcing-btn {
      margin: auto;
      margin-bottom: 30px;
    }

    .ds-payroll-outsourcing-hero .ds-payroll-outsourcing-desc {
      max-width: 100%;
    }

    .ds-payroll-outsourcing-features-split {
      text-align: center;
    }

    .ds-payroll-outsourcing-features-split .feature-item {
      justify-content: center;
    }

    .ds-payroll-outsourcing-cta p {
      max-width: 100%;
    }

    .ds-payroll-outsourcing-cta .cta-buttons {
      justify-content: center;
    }

    .ds-payroll-outsourcing-cta {
      text-align: center;
    }

    .ds-payroll-outsourcing-why .ds-payroll-outsourcing-why {
      text-align: center;
    }
  }



  @media (max-width: 576px) {
    .ds-payroll-outsourcing-hero .ds-payroll-outsourcing-title {
      font-size: 28px;
    }
  }

  .ds-payroll-offer-section {
    position: relative;
    padding: 100px 0;
    background-color: #F5F8FF;
    overflow: hidden;
  }

  /* .ds-payroll-offer-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(0, 116, 232, 0.05);
    border-radius: 50%;
    top: -180px;
    right: -180px;
  }

  .ds-payroll-offer-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(11, 31, 59, 0.05);
    border-radius: 50%;
    bottom: -120px;
    left: -120px;
  } */

  .ds-payroll-offer-content {
    position: relative;
    z-index: 2;
  }

  .ds-payroll-offer-content .ds-offer-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 116, 232, 0.1);
    color: #0074e8;
    font-weight: 600;
    font-size: 13px;
    border-radius: 20px;
    margin-bottom: 10px;
  }

  .ds-payroll-offer-content h2 {
    line-height: 1.15;
    font-weight: 800;
    color: #0b1f3b;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .ds-payroll-offer-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #5f6b7a;
    max-width: 620px;
  }

  .ds-payroll-features {
    margin-top: 35px;
  }

  .ds-payroll-features .ds-feature-box {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 116, 232, 0.08);
    border-radius: 12px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
  }

  .ds-payroll-features .ds-feature-box::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #0074e8 0%, #0b1f3b 100%);
    opacity: 0.06;
    transition: .4s ease;
  }

  .ds-payroll-features .ds-feature-box:hover::before {
    width: 100%;
  }

  .ds-payroll-features .ds-feature-box:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 116, 232, 0.15);
    box-shadow: 0 18px 40px rgba(0, 116, 232, 0.12);
  }

  .ds-payroll-features .ds-feature-box img {
    min-width: 50px;
    height: 50px;
  }

  .ds-payroll-features .ds-feature-box span {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
  }

  .ds-payroll-features .ds-payroll-offer-image {
    position: relative;
    z-index: 2;
  }

  .ds-payroll-features .ds-payroll-offer-image img {
    width: 100%;
    max-width: 580px;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.12));
    animation: floatImage 4s ease-in-out infinite;
  }

  @keyframes floatImage {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-12px);
    }

    100% {
      transform: translateY(0px);
    }
  }

  /* Responsive */



  @media (max-width: 991px) {

    .ds-payroll-offer-content {
      text-align: center;
    }

    .ds-payroll-offer-content p {
      margin: auto;
    }

    .ds-feature-box {
      justify-content: start;
    }

    .ds-payroll-offer-image {
      margin-top: 50px;
      text-align: center;
    }
  }

  @media (max-width: 767px) {
    .ds-payroll-offer-content p {
      font-size: 15px;
      line-height: 1.8;
    }

    .ds-feature-box {
      padding: 16px;
    }
  }

  @media (max-width: 575px) {



    .ds-offer-tag {
      font-size: 12px;
    }

    .ds-feature-box span {
      font-size: 14px;
    }
  }

  /******************PAYROLL Outsourcing***********************/
  /*********************Time management software***************/
  .ds-tms-hero {
    padding: 80px 0px !important;
    background: linear-gradient(281.93deg, #F2D5FF 0%, #EBDEF1 100%);
  }

  .ds-tms-hero .badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px !important;
    margin-bottom: 20px;
    color: #7B1FA2 !important;
    border: 1px solid #7B1FA226;
    background: #7B1FA214;
    box-shadow: none;
  }

  .ds-tms-hero h1 span {
    color: #7B1FA2 !important;
    font-weight: 800;
  }
 .ds-tms-hero p {
    color: #323232 !important;
    font-weight: 500;
  }
  .ds-tms-btn {
   background: #7B1FA2;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 0px 22px;
    line-height: 45px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
  }

  .ds-tms-btn:hover {
    background: #7B1FA2;
    color: #ffffff;
    transform: translateY(-3px);
  }

  .ds-tms-cta {
    background: #7B1FA2;
    overflow: hidden;
    position: relative;
  }

  .ds-tms-cta::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    left: -130px;
    bottom: -50px;
  }

  /* Right curved shape */
  .ds-tms-cta::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    right: -120px;
    top: -100px;
  }

  .ds-tms-cta .appraisal-stats {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .ds-tms-cta .appraisal-stats {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .ds-tms-cta .appraisal-stat-card {
       /* background: rgba(255, 255, 255, 0.95); */
    min-width: 140px;
    padding: 8px 20px;
    border-radius: 16px;
    text-align: center;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    backdrop-filter: blur(8px);
    transition: all .35s ease;
    cursor: pointer;
    position: relative;
  }

  .ds-tms-cta .appraisal-stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
  }



  .ds-tms-cta .appraisal-stat-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
  }

  .ds-tms-cta .appraisal-stat-card p {
       margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
  }

  /* CTA Button */
  .tms-white-btn {
     
    color: #7B1FA2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 25px;
    line-height: 45px;
    background: #FFF;
    border: 0px;
    font-size: 16px; 
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

  }

  .tms-white-btn:hover {
    transform: translateY(-4px);
    color: #7B1FA2;
  }


  .ds-tms-features-card {
    background: #F8FAFC;

  }

  .ds-tms-features-card {
    box-shadow: 0px 0px 25px 0px #00000014;
    padding: 15px;
    border-radius: 15px;
    background-color: #FFF;
    transition: 0.3s;
  }

  .ds-tms-features-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.121);
  }
  .ds-tms-features p{
    color: #323232;
    font-width: 500;
  }

  .ds-tms-managemnt {
    background: linear-gradient(51.54deg, #F2D5FF 23.19%, #EBDEF1 76.81%);
  }

  .ds-attendance-benefits {
    background: #fff;
  }

  .ds-attendance-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 20px;
    border-bottom: 1px solid #D9D9D9;
    border-radius: 0px;
    transition: all 0.35s ease;
  }

  .last-child-border{
    border: none;
  }

  .ds-attendance-item:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 12px 30px rgba(128, 52, 194, 0.12);
  }

  .ds-attendance-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    background: #7B1FA2;
    border-radius: 10px;
    padding: 7px;
  }

  .ds-attendance-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .ds-attendance-content h4 {
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 100%;
  }

  .ds-attendance-content p {
    line-height: 1.8;
    margin-bottom: 0;
  }

  .tms-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .tms-feature-list li {
   position: relative;
    margin-bottom: 15px;
    padding-top: 6px;
    font-weight: 600;
    color: #323232;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* .tms-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    background: #7b2cbf;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  } */

  .ds-tms-features {
    position: relative;
    overflow: hidden;
  }

  .ds-tms-features .ds-appraisal-section-heading {
    position: relative;
    z-index: 2;
    margin: 0 auto 50px;
  }

  .ds-tms-features .ds-feature-card {
        position: relative;
    z-index: 2;
    height: 100%;
    padding: 35px 28px;
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    transition: all 0.35s ease;
    overflow: hidden;
    box-shadow: 0 22px 50px rgb(166 166 166 / 10%);
  }

  .ds-tms-features .ds-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 116, 232, 0.03) 0%,
        transparent 100%);
    opacity: 0;
    transition: all 0.35s ease;
  }

  

  .ds-tms-features .ds-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
  }

  .ds-tms-features .ds-feature-card:hover .ds-feature-icon {
    background: #7B1FA2;
    color: #fff;
  }

  .ds-tms-features .ds-feature-card:hover .ds-feature-icon img {
    filter: brightness(0) saturate(100%) invert(92%) sepia(14%) saturate(450%) hue-rotate(315deg) brightness(102%) contrast(97%);

  }

  .ds-tms-features .ds-feature-card:hover::before {
    opacity: 1;
  }


  .ds-tms-features .ds-feature-icon {
    width: 65px;
    height: 60px;
    border-radius: 15px;
    background: #EBDEF1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 14px 35px rgb(148 14 185 / 8%);
  }

  .ds-tms-features .ds-feature-icon i {
    color: #fff;
    font-size: 28px;
  }

  /* Text */

  .ds-tms-features .ds-feature-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 16px;
  }

  .ds-tms-features .ds-feature-card p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
  }

  .ds-tms-features .ds-feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 4px;
    background: #7B1FA2;
    transition: width 0.35s ease;
  }

  .ds-tms-features .ds-feature-card:hover::after {
    width: 100%;
  }

  .ds-tms-mobile-app {
    padding: 0 0 70px 0;
  }

  .ds-tms-mobile-app .card {
    background: #7B1FA2;
    border: 0;
    border-radius: 30px;
    padding: 50px 60px 0px;
    overflow: hidden;
  }

  .ds-mobile-card::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    right: -180px;
    bottom: -120px;
  }

  .ds-mobile-card::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 45px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    right: -130px;
    bottom: -70px;
  }

  .ds-tms-mobile-app h2 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 44px;
  }

  .ds-tms-mobile-app p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: .95;
  }

  .ds-apps-download img {
    height: 50px;
    width: auto;
    transition: transform .3s ease;
  }

  .ds-apps-download a:hover img {
    transform: translateY(-4px);
  }

  .ds-mobile-img {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  /* Tablet */
  @media (max-width: 991px) {
    .ds-tms-mobile-app .card {
      padding: 40px;
    }

    .ds-tms-mobile-app h2 {
      font-size: 34px;
    }

    .last-child-border{
          border-bottom: 1px solid #e7e7e7;
     }

    .center-col-align{
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .ds-tms-features .ds-appraisal-section-heading{
      margin-bottom: 30px;
    }

    .hide-br br{
       display: none;
    }
    

  }

  /* Mobile */
  @media (max-width: 767px) {
    .ds-attendance-item {
      padding: 20px 0;
      gap: 15px;
    }


    

    .ds-attendance-icon {
      width: 48px;
      min-width: 48px;
      height: 48px;
    }

    .tms-feature-list li {
      /* padding-left: 36px; */
      margin-bottom: 12px;
    }

    .ds-tms-features .ds-feature-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 8px;
}

    .tms-feature-list li::before {
      width: 20px;
      height: 20px;
      font-size: 12px;
    }

    .ds-tms-mobile-app .card {
      padding: 35px 25px 0px;
      text-align: center;
      border-radius: 24px;
    }

    .ds-tms-mobile-app h2 {
      font-size: 28px;
    }

    .ds-tms-mobile-app p {
      font-size: 16px;
    }

    .ds-apps-download {
      justify-content: center;
    }

    .ds-apps-download img {
      height: 48px;
    }

    .ds-mobile-img {
      max-width: 240px;
      margin-top: 30px;
    }

    .ds-mobile-card::before,
    .ds-mobile-card::after {
      display: none;
    }

    .ds-tms-features-card {
      margin-bottom: 30px;
    }

    .mobile-bottom-non{
      margin-bottom: 0;
    }

    .hide-br br{
       display: none;
    }
    
  }

  /**********************Time Management software end*****************/

  .home-cta-img{
    width: 80%;
  }