          /* Reset and base styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Poppins", serif;
        background-color: #04070d;
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
      }

      img {
        height: auto;
        display: block;
      }

      button {
        border: none;
        cursor: pointer;
        font-family: inherit;
      }

      /* Layout components */
      .container {
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 16px;
      }

      .flex-row {
        display: flex;
        flex-direction: row;
        align-items: center;
      }

      .flex-column {
        display: flex;
        flex-direction: column;
      }

      .flex-center {
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .flex-between {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .stack {
        position: relative;
      }

      /* Header */
      .header {
        background-color: #000000;
        padding: 18px 16px;
        position: sticky;
        top: 0;
        z-index: 100;
      }

      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
      }

      .logo {
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
      }

      .nav-menu {
        display: none;
        gap: 28px;
        align-items: center;
      }

      .nav-link {
        font-size: 16px;
        font-weight: 400;
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .nav-link:hover {
        color: #d5dbe6;
      }

      .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 8px;
      }

      .hamburger-line {
        width: 20px;
        height: 2px;
        background-color: #ffffff;
        border-radius: 1px;
      }

      /* Hero Section */
      .hero {
        position: relative;
        min-height: 100vh;
        justify-content: center;
        align-items: center;
        background: url("/assets/img_hero_bg.png") center/cover;
      }
      /* Slider Section */
      .slider-section-1 {
        padding: 100px 16px;
        background-color: #000000;
        overflow: hidden;
        margin-left: 4%;
      }

      .slider-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 60px;
        margin-left: auto;
        margin-right: auto;
      }

      .slider-title {
        font-size: 38px;
        font-weight: 400;
        line-height: 1.2;
        color: #ffffff;
        width: 70%;
      }

      .slider-controls {
        display: flex;
        gap: 12px;
      }

      .slider-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        cursor: pointer;
      }

      .slider-btn:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
      }

      .slider-btn svg {
        width: 20px;
        height: 20px;
        stroke: #ffffff;
      }

      .slider-container {
        position: relative;
        margin: 0 auto;
      }

      .slider-wrapper {
        overflow: hidden;
        position: relative;
      }

      .slider-track {
        display: flex;
        gap: 24px;
        transition: transform 0.5s ease;
      }

      .slider-card {
        min-width: 320px;
        height: 400px;
        border-radius: 24px;
        padding: 32px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        cursor: pointer;
        transition: transform 0.3s ease;
        overflow: hidden;
      }

      .slider-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 24px;
        padding: 2px;
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.3),
          rgba(255, 255, 255, 0.1)
        );
        -webkit-mask: linear-gradient(#fff 0 0) content-box,
          linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
      }

      .slider-card-content {
        position: relative;
        z-index: 2;
      }

      .slider-card-title {
        font-size: 24px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 12px;
      }

      .slider-card-description {
        font-size: 14px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
      }

      .card-1 {
        background: linear-gradient(
          135deg,
          #6366f1 0%,
          #ec4899 50%,
          #ef4444 100%
        );
      }

      .card-2 {
        background: linear-gradient(135deg, #a3a35c 0%, #8b5cf6 100%);
      }

      .card-3 {
        background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
      }

      .card-4 {
        background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
      }

      .card-5 {
        background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
      }

      @media (max-width: 768px) {
        .hero {
          min-height: 80vh;
          margin-top: 2rem;
        }
        .slider-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 24px;
        }

        .slider-title {
          font-size: 32px;
          width: 100%;
        }

        .slider-card {
          min-width: 280px;
        }
      }

      .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
      }

      .hero-badge-icon {
        width: 100px;
        height: 105px;
        background-color: #04070d;
        margin: auto;
        border-radius: 10px;
      }

      .hero-badge-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .hero-new-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px;
        margin-top: 3%;
        margin-bottom: 24px;
      }
      .process-image {
        width: 90%;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0 auto;
      }
      .hero-new-tag img {
        width: 12px;
        height: 12px;
      }

      .hero-new-text {
        font-size: 12px;
        font-weight: 500;
        color: #d5dbe6;
      }

      .hero-title {
        font-size: 48px;
        font-weight: 500;
        line-height: 1.2;
        background: linear-gradient(90deg, #d5dbe6 100%, #04070d 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 16px;
      }
      /* .hero-title span{
        font-size: 3.5rem;
        background: linear-gradient(90deg, #12c694 100%, #04070d 100%);
                -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        
      } */

      .hero-subtitle {
        font-size: 14px;
        font-weight: 400;
        color: #d5dbe6;
        margin-left: 1rem;
        margin-bottom: 24px;
      }
      .slider-content {
        color: #ffffff;
      }

      .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px 14px 28px;
        background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
      }

      .cta-button img {
        width: 22px;
        height: 22px;
      }

      /* Trust Section */
      .trust-section {
        padding: 60px 16px;
        text-align: center;
      }

      .trust-text {
        font-size: 16px;
        font-weight: 500;
        color: #ffffff;
        margin-bottom: 18px;
      }

      .trust-logos {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
      }

      /* Content Section */
      .content-section {
        position: relative;
      }

      .content-bg {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        max-width: 884px;
        border-radius: 50px 50px 0 0;
        background-color: #04070d;
      }

      .content-text {
        position: relative;
        z-index: 2;
        margin: 0 auto;
        text-align: left;
      }

      .wrapper-page {
        margin-left: 4%;
        margin-right: 4%;
      }

      .content-main-text {
        font-size: 28px;
        font-family: "Poppins", serif;
        font-weight: 400;
        line-height: 1.2;
        color: rgba(255, 255, 255, 0.9);
        margin: auto;
        width: 80%;
      }

      .content-highlight {
        color: #000000;
      }

      /* Services Section */
      .services-section {
        background: url("/assets/images/img_image_1.png") center/cover;
      }

      .services-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .services-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        background-color: #04070d;
        border: 1px solid rgba(216, 231, 242, 0.07);
        border-radius: 14px;
        margin-bottom: 16px;
      }

      .services-badge img {
        width: 16px;
        height: 16px;
      }

      .services-badge-text {
        font-size: 12px;
        font-weight: 400;
        color: #d5dbe6;
      }

      .services-title {
        font-size: 32px;
        font-weight: 500;
        line-height: 1.2;
        background: linear-gradient(
          90deg,
          #d5dbe6 0%,
          #d5dbe6 85%,
          #04070d 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 16px;
      }

      .services-subtitle {
        font-size: 16px;
        font-weight: 400;
        background: linear-gradient(
          90deg,
          #d5dbe6 0%,
          #d5dbe6 85%,
          #04070d 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        max-width: 600px;
        margin: 0 auto;
      }

      .services-grid {
        display: flex;
        gap: 24px;
        width: 90%;
        margin: auto;
      }

      .benefits-grid {
        display: flex;
        gap: 24px;
        width: 90%;
        margin: 0 auto;
        margin-top: 2% !important;
      }

      .service-card {
        background-color: #04070d;
        border: 1px solid rgba(216, 231, 242, 0.07);
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0px 2px 1px rgba(207, 231, 255, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0px 8px 25px rgba(207, 231, 255, 0.15);
      }

      .service-card-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }

      .service-features {
        width: 300px;
        height: 200px;
        margin: auto;
      }

      .service-features1 {
        width: 500px;
        height: 200px;
        margin: auto;
      }
      .service-features1 img {
        width: 100%;
        height: 100%;
      }

      .service-feature {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 8px;
        background-color: #04070d;
        border: 1px solid rgba(216, 231, 242, 0.07);
        border-radius: 3px;
        box-shadow: 0px 1px 1px rgba(207, 231, 255, 0.2);
      }

      .service-features img {
        width: 100%;
        height: 100%;
      }

      .service-feature-text {
        font-size: 14px;
        font-weight: 400;
        color: #d5dbe6;
      }

      .service-title-text {
        font-size: 18px;
        font-weight: 400;
        color: #ffffff;
        margin-bottom: 8px;
      }

      .service-description {
        font-size: 14px;
        font-weight: 200;
        line-height: 1.6;
        color: #d6d6d6;
      }

      /* Workflow Section */
      .workflow-section {
        position: relative;
        padding: 100px 16px;
      }

      .workflow-visual {
        position: relative;
        width: 100%;
        height: 200px;
      }

      .workflow-visual img {
        width: 100%;
        height: 100%;
      }

      .workflow-icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        margin-bottom: 40px;
      }

      .workflow-icon {
        width: 48px;
        height: 48px;
        padding: 8px;
        background-color: #10131c;
        border: 1px solid rgba(216, 231, 242, 0.07);
        border-radius: 4px;
        box-shadow: 0px 1px 1px rgba(207, 231, 255, 0.2);
      }

      .workflow-center {
        display: flex;
        justify-content: center;
        margin: 40px 0;
      }

      .workflow-center-icon {
        width: 124px;
        height: 124px;
        padding: 34px;
        background-color: #04070d;
        border: 1px solid rgba(216, 231, 242, 0.07);
        border-radius: 62px;
        box-shadow: 0px 7px 14px rgba(166, 218, 255, 0.31);
      }

      .workflow-center-icon img {
        width: 56px;
        height: 56px;
      }

      /* Benefits Section */
      .benefits-section {
        padding: 100px 16px;
        background-color: #04070d;
      }

      .benefits-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .benefits-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        background-color: #04070d;
        border: 1px solid rgba(216, 231, 242, 0.07);
        border-radius: 14px;
        margin-bottom: 16px;
      }

      .benefits-title {
        font-size: 32px;
        font-weight: 500;
        line-height: 1.2;
        background: #ffffff;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 16px;
      }

      .benefit-card {
        background-color: #04070d;
        border: 1px solid rgba(216, 231, 242, 0.07);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0px 2px 1px rgba(207, 231, 255, 0.2);
      }

      .benefit-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
      }

      .benefit-content {
        padding: 20px;
        background: linear-gradient(180deg, rgba(4, 7, 13, 0) 0%, #04070d 100%);
        position: relative;
        z-index: 2;
      }

      .benefit-flow {
        text-align: center;
      }

      .benefit-title {
        font-size: 18px;
        font-weight: 400;
        color: #ffffff;
        margin-bottom: 8px;
      }

      .benefit-description {
        font-size: 14px;
        font-weight: 200;
        line-height: 1.6;
        color: #d6d6d6;
      }

      /* Industries Section */
      .industries-section {
        padding: 60px 16px;
        margin-top: -48px;
      }

      .industries-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        max-width: 1208px;
        margin: 0 auto;
      }

      .industry-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 56px 16px;
        background-color: #000000;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        text-align: center;
      }

      .industry-icon {
        width: 60px;
        height: 60px;
      }

      .industry-name {
        font-size: 16px;
        font-weight: 400;
        color: #ffffff;
      }

      /* Process Section */
      .process-section {
        position: relative;
      }

      .process-content {
        position: relative;
        z-index: 2;
        text-align: center;
        margin: 0 auto;
      }

      .process-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 12px;
        background-color: #000000;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        margin-bottom: 16px;
      }

      .process-new-tag {
        padding: 2px 4px;
        background-color: #12c694;
        border-radius: 8px;
        font-size: 10px;
        font-weight: 700;
        color: #000000;
      }

      .process-badge-text {
        font-size: 16px;
        font-weight: 400;
        color: #ffffff;
      }

      .process-title {
        font-size: 40px;
        font-weight: 500;
        line-height: 1.2;
        background: linear-gradient(180deg, #ffffff 0%, #868686 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 20px;
      }

      .process-subtitle {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.7;
        background: #ffff;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 32px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      .process-cta {
        display: inline-flex;
        align-items: center;
        padding: 8px 16px;
        background-color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        margin-bottom: 60px;
        text-decoration: none;
      }

      .process-cta-text {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
      }
      /* Stacked Cards Container */
      .stacked-cards-container {
        position: relative;
        padding: 0;
        min-height: 300vh;
      }

      /* Feature Sections - Stacked Cards */
      .feature-section {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #000000;
        border: 1px solid #191919;
        border-radius: 16px;
        padding: 40px;
        margin: 20px;
        z-index: 10;
      }

      /* FIXED: Each card gets higher z-index as it comes into view */
      .feature-section:nth-child(1) {
        z-index: 10;
      }

      .feature-section:nth-child(2) {
        z-index: 20;
      }

      .feature-section:nth-child(3) {
        z-index: 30;
      }

      .feature-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
      }

      .feature-text {
        flex: 1;
      }

      .feature-title {
        font-size: 32px;
        font-weight: 500;
        line-height: 1.2;
        color: #ffffff;
        margin-bottom: 26px;
      }

      .feature-description {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
        color: #ffffff;
        margin-bottom: 28px;
      }

      .feature-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .feature-item {
        display: flex;
        align-items: center;
        gap: 16px;
      }

      .feature-item img {
        width: 32px;
        height: 32px;
        border-radius: 4px;
      }

      .feature-item-text {
        font-size: 18px;
        font-weight: 500;
        color: #ffffff;
      }

      .feature-image {
        flex: 1;
        border-radius: 8px;
        max-width: 530px;
        width: 100%;
        object-fit: contain;
      }

      @media (max-width: 768px) {
        .stacked-cards-container {
          height: auto;
          min-height: auto;
          position: relative;
          display: flex;
          flex-direction: column;
          gap: 1rem;
        }

        .feature-section {
          position: relative !important;
          top: auto !important;
          height: auto !important;
          min-height: auto;
          margin: 20px 10px;
          padding: 30px 20px;
          z-index: auto !important;
          transform: none !important;
          opacity: 1 !important;
        }

        .feature-content {
          flex-direction: column;
        }
        .feature-image {
          max-width: 100%;
          margin-top: 20px;
        }

        .feature-title {
          font-size: 24px;
        }

        .feature-description {
          font-size: 14px;
        }

        .feature-item-text {
          font-size: 14px;
        }
      }
      /* ============================================
       INTEGRATION SECTION - MAIN CONTAINER
       ============================================ */

      .integration-section {
        text-align: center;
        background-color: #04070d;
        padding: 100px 16px;
      }

      .integration-title {
        font-size: 48px;
        font-weight: 500;
        line-height: 1.2;
        color: #ffffff;
        margin-bottom: 20px;
      }

      .integration-subtitle {
        font-size: 48px;
        font-weight: 500;
        line-height: 1.2;
        color: #ffffff;
        margin-bottom: 40px;
      }

      .integration-badge {
        display: inline-block;
        background: linear-gradient(
          90deg,
          #693300 0%,
          #000000 50%,
          #0069a6 100%
        );
        border-radius: 14px;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        color: #ffffff;
        margin-bottom: 40px;
        padding: 4px 14px;
      }

      .integration-container {
        margin: 0px 0;
        position: relative;
      }

      /* ============================================
       DESKTOP INTEGRATION VISUAL (769px+)
       ============================================ */
      .integration-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 550px;
      }

      .integration-globe {
        width: 100%;
        max-width: 600px;
        height: auto;
        position: relative;
        z-index: 1;
      }

      .integration-apps-grid {
        position: absolute;
        flex-direction: column;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 6rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 50px;
        z-index: 2;
      }
      .integration-apps-grid1,
      .integration-apps-grid2 {
        display: flex;
        gap: 1rem;
      }

      .app-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        flex: 0 0 60px;
      }

      .app-icon:hover {
        background: rgba(0, 0, 0, 0.6);
        transform: scale(1.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
      }

      .app-icon img {
        width: 50px;
        height: 50px;
        object-fit: contain;
      }

      .app-icon:nth-child(10) {
        margin-left: 5.55%;
      }

      /* ============================================
       MOBILE INTEGRATION VISUAL (768px and below)
       Grid 2 columns, initially 2 rows, with Show More
       ============================================ */
      .integration-mobile-visual {
        display: none;
        position: relative;
        width: 100%;
        min-height: auto;
        padding: 40px 20px;
      }

      .integration-globe-mobile {
        width: 100%;
        max-width: 250px;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.3;
        z-index: 1;
      }

      .integration-apps-grid-mobile {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
        padding: 20px;
        margin: 0 auto;
      }

      .app-icon-mobile {
        width: 100%;
        height: 75px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
      }

      .app-icon-mobile:hover {
        background: rgba(0, 0, 0, 0.7);
        transform: scale(1.05);
        border: 1px solid rgba(255, 255, 255, 0.3);
      }

      .app-icon-mobile img {
        width: 48px;
        height: 48px;
        object-fit: contain;
      }

      /* Initially hide items after first 4 (2 rows) */
      /* .app-icon-mobile.hidden-mobile {
        display: none;
      } */

      .app-icon-mobile.show {
        display: flex;
      }

      /* ============================================
       SHOW MORE / SHOW LESS BUTTON
       ============================================ */
      .show-more-btn {
        display: none;
        padding: 12px 34px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #ffffff;
        transition: all 0.3s ease;
        margin-top: 20px;
        cursor: pointer;
        margin-left: auto;
        margin-right: auto;
        display: block;
      }

      .show-more-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
      }

      .show-more-btn:active {
        transform: translateY(0);
      }

      /* ============================================
       CALL TO ACTION BUTTON
       ============================================ */
      .integration-cta {
        display: inline-block;
        padding: 12px 34px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #ffffff;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-top: 40px;
      }

      .integration-cta:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
      }

      /* ============================================
       RESPONSIVE BREAKPOINTS
       ============================================ */

      /* MOBILE SMALL (480px and below) */
      @media (max-width: 480px) {
        .integration-section {
          padding: 40px 0;
        }

        .integration-title {
          font-size: 28px;
        }

        .integration-subtitle {
          font-size: 28px;
          margin-bottom: 20px;
        }

        .integration-badge {
          font-size: 12px;
          padding: 4px 10px;
          margin-bottom: 20px;
        }

        .integration-visual {
          display: none !important;
        }

        .integration-mobile-visual {
          display: block;
          min-height: auto;
          /* padding: 30px 16px; */
        }

        .integration-globe-mobile {
          max-width: 200px;
          opacity: 0.3;
        }

        .integration-apps-grid-mobile {
          grid-template-columns: repeat(3, 1fr);
          gap: 2rem;
          padding: 0;
          margin-top: 20px;
        }

        .app-icon-mobile {
          height: 65px;
        }

        .app-icon-mobile img {
          width: 45px;
          height: 45px;
        }

        .show-more-btn {
          display: block;
          width: fit-content;
          padding: 10px 28px;
          font-size: 14px;
        }

        .integration-cta {
          padding: 10px 28px;
          font-size: 14px;
          margin-top: 30px;
        }
      }
      /* MOBILE MEDIUM (481px - 768px) */
      @media (min-width: 481px) and (max-width: 768px) {
        .integration-section {
          padding: 60px 16px;
        }

        .integration-title {
          font-size: 36px;
        }

        .integration-subtitle {
          font-size: 36px;
        }

        .integration-visual {
          display: none !important;
        }

        .integration-mobile-visual {
          display: block;
          min-height: auto;
        }

        .integration-globe-mobile {
          max-width: 280px;
          opacity: 0.3;
        }

        .integration-apps-grid-mobile {
          grid-template-columns: repeat(3, 1fr);
          gap: 12px;
          padding: 20px;
          margin-top: 20px;
        }

        .app-icon-mobile {
          height: 75px;
        }

        .app-icon-mobile img {
          width: 50px;
          height: 50px;
        }

        .show-more-btn {
          display: block;
          width: fit-content;
        }
      }

      /* TABLET (769px - 1200px) */
      @media (min-width: 769px) and (max-width: 1023px) {
        .integration-visual {
          display: flex;
          min-height: 450px;
        }
        .integration-apps-grid1,
        .integration-apps-grid2 {
          display: flex;
          gap: 1.5rem;
        }

        .integration-mobile-visual {
          display: none !important;
        }

        .integration-globe {
          max-width: 350px;
        }

        .app-icon {
          width: 55px;
          height: 55px;
          flex: 0 0 55px;
        }

        .app-icon img {
          width: 38px;
          height: 38px;
        }

        .app-icon:nth-child(6) {
          margin-left: 10%;
        }

        .show-more-btn {
          display: none !important;
        }
        .integration-apps-grid1,
        .integration-apps-grid2 {
          display: flex;
          gap: 1.5rem;
        }
      }

      @media (min-width: 1024px) and (max-width: 1280px) {
        .integration-visual {
          display: flex;
          min-height: 500px;
        }
        .integration-apps-grid1,
        .integration-apps-grid2 {
          display: flex;
          gap: 3rem;
        }
        .integration-apps-grid {
          transform: translate(-50%, -60%);
        }

        .integration-mobile-visual {
          display: none !important;
        }

        .integration-globe {
          max-width: 500px;
        }

        .app-icon {
          width: 4rem;
          height: 4rem;
          flex: 0 0 4rem;
        }

        .app-icon img {
          width: 2rem;
          height: 2rem;
        }

        .show-more-btn {
          display: none !important;
        }
      }

      @media (min-width: 1281px) and (max-width: 1535px) {
        .integration-visual {
          display: flex;
          min-height: 550px;
        }
        .integration-apps-grid1,
        .integration-apps-grid2 {
          display: flex;
          gap: 3rem;
        }

        .integration-mobile-visual {
          display: none !important;
        }

        .integration-globe {
          max-width: 650px;
        }

        .app-icon {
          width: 6rem;
          height: 6rem;
          flex: 0 0 6rem;
        }

        .app-icon img {
          width: 3rem;
          height: 3rem;
        }

        .show-more-btn {
          display: none !important;
        }
      }

      /* DESKTOP EXTRA LARGE (1441px+) - 9-10 items per row */
      @media (min-width: 1536px) {
        .integration-visual {
          display: flex;
          min-height: 550px;
        }
        .integration-apps-grid1,
        .integration-apps-grid2 {
          display: flex;
          gap: 3.5rem;
        }

        .integration-mobile-visual {
          display: none !important;
        }

        .integration-globe {
          max-width: 600px;
        }

        .app-icon {
          width: 120px;
          height: 120px;
          flex: 0 0 120px;
        }

        .app-icon img {
          width: 70px;
          height: 70px;
        }

        .app-icon:nth-child(n + 18) {
          display: none;
        }

        .show-more-btn {
          display: none !important;
        }
      }
      @media (min-width: 1537px) and (max-width: 1920px) {
        .integration-apps-grid1,
        .integration-apps-grid2 {
          display: flex;
          gap: 3rem;
        }
        .integration-visual {
          display: flex;
          min-height: 550px;
        }

        .integration-mobile-visual {
          display: none !important;
        }

        .integration-globe {
          max-width: 600px;
        }

        .app-icon {
          width: 5rem;
          height: 5rem;
          flex: 0 0 5rem;
        }

        .app-icon img {
          width: 3rem;
          height: 3rem;
        }

        .app-icon:nth-child(n + 18) {
          display: none;
        }

        .show-more-btn {
          display: none !important;
        }
        .integration-section {
          padding: 1rem 16px;
        }
        .integration-apps-grid {
          transform: translate(-50%, -60%);
        }
        .integration-container {
          margin: 0;
          position: relative;
        }
        .integration-cta {
          display: block;
          margin: auto;
          width: 10rem;
        }
        .stacked-cards-container {
          position: relative;
          padding: 0;
          min-height: auto;
        }
        .integration-subtitle {
          margin-bottom: 20px;
        }
        /* .integration-cta{} */
      }
      @media (min-width: 1921px) and (max-width: 2560px) {
        .integration-visual {
          display: flex;
          min-height: 550px;
        }

        .integration-mobile-visual {
          display: none !important;
        }

        .integration-globe {
          max-width: 700px;
        }

        .integration-apps-grid {
          gap: 18px;
          padding: 50px;
        }

        .app-icon {
          width: 8rem;
          height: 8rem;
          flex: 0 0 8rem;
        }

        .app-icon img {
          width: 4rem;
          height: 4rem;
        }

        .app-icon:nth-child(n + 18) {
          display: none;
        }

        .show-more-btn {
          display: none !important;
        }
        .stacked-cards-container {
          position: relative;
          padding: 0;
          min-height: auto;
        }
      }
      /* Hide extra items on all desktop sizes */
      @media (min-width: 769px) {
        .app-icon:nth-child(n + 18) {
          display: none;
        }
      }

.cta-section {
  position: relative;
  padding: 100px 16px;
  background:
    /* fade from top */
    linear-gradient(to bottom, black 0%, transparent 15%),
    /* fade from bottom */
    linear-gradient(to top, black 0%, transparent 15%),
    /* fade from left */
    /* linear-gradient(to right, black 0%, transparent 10%), */
    /* fade from right */
    /* linear-gradient(to left, black 0%, transparent 10%), */
    /* your background image */
    url("/assets/img_background_gradient_background_gradient_shape.png") center/cover no-repeat;
  text-align: center;
  z-index: 1;
}



      .cta-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-bottom: 42px;
      }

      .cta-line {
        width: 68px;
        height: 1px;
        background: linear-gradient(
          90deg,
          rgba(4, 7, 13, 0.5) 0%,
          rgba(255, 255, 255, 0.5) 100%
        );
      }

      .cta-divider-text {
        font-size: 16px;
        font-weight: 400;
        font-style: italic;
        color: #ffffff;
      }

      .cta-title {
        font-size: 32px;
        font-weight: 500;
        line-height: 1.2;
        background: linear-gradient(
          90deg,
          #d5dbe6 0%,
          #d5dbe6 85%,
          #04070d 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 20px;
      }

      .cta-subtitle {
        font-size: 16px;
        font-weight: 400;
        background: linear-gradient(
          90deg,
          #d5dbe6 0%,
          #d5dbe6 85%,
          #04070d 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 24px;
      }

      /* Interactive states */
      .service-card:hover,
      .benefit-card:hover,
      .industry-card:hover {
        transform: translateY(-4px);
      }

      .workflow-icon:hover {
        background-color: #1a1d26;
        transform: scale(1.05);
      }

      /* button:hover, */
      .cta-button:hover {
        transform: translateY(-2px);
      }

      button:active,
      .cta-button:active {
        transform: translateY(0);
      }

      /* Responsive media queries */

      @media screen and (max-width: 400px) {
        .services-grid {
          display: grid;
          grid-template-columns: 1fr;
        }
        .benefits-grid {
          display: grid;
          grid-template-columns: 1fr;
        }
        .service-features {
          width: 100%;
          height: 200px;
          margin: auto;
        }

        .service-card,
        .benefit-card {
          margin-bottom: 6%;
        }
        .service-features img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        .service-features1 {
          width: 100%;
          height: 200px;
          margin: auto;
        }
        .service-features1 img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        .content-main-text {
          width: 100%;
        }
      }
      @media screen and (max-width: 630px) {
        .services-grid {
          display: grid;
          grid-template-columns: 1fr;
        }
        .benefits-grid {
          display: grid;
          grid-template-columns: 1fr;
        }
        .service-features {
          width: 100%;
          height: 200px;
          margin: auto;
        }

        .service-card,
        .benefit-card {
          margin-bottom: 6%;
        }
        .service-features img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        .service-features1 {
          width: 100%;
          height: 200px;
          margin: auto;
        }
        .service-features1 img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        .content-main-text {
          width: 100%;
        }
      }
      @media (min-width: 640px) {
        .container {
          padding: 0 24px;
        }

        .logo {
          font-size: 24px;
        }

        .hero-title {
          font-size: 60px;
        }

        .hero-subtitle {
          font-size: 16px;
        }

        .content-main-text {
          width: 100%;
          font-size: 40px;
        }

        .services-title,
        .benefits-title {
          font-size: 36px;
        }

        .process-title,
        .integration-title,
        .integration-subtitle {
          font-size: 56px;
        }

        .cta-title {
          font-size: 36px;
        }

        .industries-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }

      @media (min-width: 768px) {
        .container {
          padding: 0 32px;
        }

        .nav-menu {
          display: flex;
        }

        .hamburger {
          display: none;
        }

        .nav-link {
          font-size: 18px;
        }

        .hero-title {
          font-size: 70px;
        }

        .content-main-text {
          font-size: 40px;
          line-height: 1.2 !important;
          width: 80%;
        }
                .services-grid {
          display: grid;
          grid-template-columns: 1fr;
        }
        .benefits-grid {
          display: grid;
          grid-template-columns: 1fr;
        }
        .feature-content {
          flex-direction: row;
          align-items: center;
        }

        .feature-text {
          flex: 1;
          padding-right: 40px;
        }

        .feature-image {
          flex: 1;
        }

        .industries-grid {
          grid-template-columns: repeat(5, 1fr);
        }

        .process-title,
        .integration-title,
        .integration-subtitle {
          font-size: 52px;
        }

        .cta-title {
          font-size: 40px;
        }
      }

      @media (min-width: 1024px) {
        .hero-title {
          font-size: 4.5rem;
        }

        .content-main-text {
          font-size: 48px;
          width: 100%;
        }

        .services-title,
        .benefits-title {
          font-size: 44px;
        }

        .services-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        #serviceCard{
          grid-column: 2 / 4;
        }

        .benefits-grid {
          grid-template-columns: repeat(3, 1fr);
        }

        .feature-title {
          font-size: 38px;
        }

        .process-title,
        .integration-title,
        .integration-subtitle {
          font-size: 52px;
        }

        .cta-title {
          font-size: 44px;
        }
      }

      @media (min-width: 1280px) {
        .container {
          max-width: 1440px;
        }

        .services-header,
        .benefits-header {
          max-width: 1208px;
          margin-left: auto;
          margin-right: auto;
        }
      }

      @media (min-width: 1536px) {
        .hero {
          position: relative;
          display: flex;
          min-height: 100vh;
          justify-content: center;
          text-align: center;
          align-items: center;
          /* justify-content: flex-start; */
        }
        .hero-title {
          font-size: 80px;
        }

        .content-main-text {
          font-size: 56px;
          width: 80%;
        }
        .services-grid {
          display: flex;
          gap: 24px;
          width: 70%;
          margin: auto;
          margin-top: 2% !important;
        }
        #serviceCard{
          grid-column: 2 / 4;
        }
        .benefits-grid {
          display: flex;
          gap: 24px;
          width: 70%;
          margin: 0 auto;
          margin-top: 2% !important;
        }

        .slider-container {
          position: relative;
          margin: 0 auto;
          width: 100%;
        }
        .slider-card {
          width: 400px;
          height: 500px !important;
        }
      }

      .content-main-text {
        font-weight: 400;
        line-height: 1.2;
        color: rgba(255, 255, 255, 0.9);
        white-space: normal;
        word-wrap: break-word;
      }

      .content-main-text span {
        transition: color 0.3s ease, opacity 0.3s ease;
        display: inline;
        white-space: normal;
      }

      .feature-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
      }
      .feature-section {
        margin: 0;
        padding: 5%;
        height: 100%;
      }
      .discussion-btn {
  width: 300px;
  height: 55px;
  border: 1px solid transparent;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  background-color: black;
  color: var(--white);
  margin: 3% 0;
  margin-left: 7px;
  letter-spacing: 1px;
  position: relative;
}

.discussion-btn::after,
.discussion-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: conic-gradient(from var(--angle), #00BAFF, #13C78B);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 28px 150.5px;
  padding-bottom: 30px;
  padding-left: 154px;
  animation: 3s spin linear infinite;
}

.discussion-btn::before {
  filter: blur(1.5rem);
  opacity: 0.5;
}



.fotter-main-div{
  padding-top: 5rem;
}