  .customer-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
  }

  .customer-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 109, 224, 0.03), rgba(89, 131, 232, 0.03));
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
  }

  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
  }

  .hero-content {
    flex: 1;
    max-width: 560px;
    padding-right: 2rem;
  }

  .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0C1E7E;
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }

  .hero-title span {
    background: #02e2d0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-description {
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 500px;
  }

  .hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .hero-visual .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .fox-center {
    justify-content: start !important;
    gap: 15px;
  }

  @media (max-width: 992px) {
    .hero-container {
      flex-direction: column;
      text-align: center;
    }

    .fox-center {
      justify-content: center !important;
      gap: 12px;
    }

    .hero-content {
      padding-right: 0;
      margin-bottom: 2rem;
      max-width: 100%;
    }

    .d-md-center {
      justify-content: center !important;
    }

    .customer-hero::before {
      width: 100%;
      clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
    }
  }

  @media (max-width: 768px) {
    .customer-hero {
      padding: 4rem 0 2rem;
    }

    .hero-title {
      font-size: 2.25rem;
    }
  }


















  .customer-interaction-section {
    padding: 5rem 0 1rem 0;

    background: #fff;
    position: relative;
    overflow: hidden;
  }



  .section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
  }

  .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0C1E7E, #3b6de0);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
  }

  .section-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1e293b;
    /* margin-bottom: 1.5rem; */
    line-height: 1.2;
    letter-spacing: -0.025em;
  }

  .section-header p {
    /* font-size: 1.125rem; */
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
  }

  .core-feature-card {
    /* Renamed from .feature-card */
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    /* Reduced padding */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    /* Center content */
  }

  @media (max-width: 768px) {
    .core-feature-row {
      gap: 20px;
    }
  }

  .core-feature-card::before {
    /* Renamed from .feature-card::before */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0C1E7E, #3b6de0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .core-feature-card:hover {
    /* Renamed from .feature-card:hover */
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .core-feature-card:hover::before {
    /* Renamed from .feature-card:hover::before */
    transform: scaleX(1);
  }

  .card-icon-container {
    width: 70px;
    /* Reduced size */
    height: 70px;
    /* Reduced size */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    /* Center icon */
    font-size: 1.75rem;
    /* Reduced size */
    color: white;
    position: relative;
    z-index: 1;
  }

  .card-icon-container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: inherit;
    opacity: 0.2;
    z-index: -1;
  }

  .icon-1 {
    background: linear-gradient(135deg, #0C1E7E, #3b6de0);
  }

  .icon-2 {
    background: linear-gradient(135deg, #10b981, #059669);
  }

  .icon-3 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
  }

  .icon-4 {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  }

  .core-feature-card h3 {
    /* Renamed from .feature-card h3 */
    font-size: 1.1rem;
    /* Reduced size */
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
  }

  .core-feature-card p {
    /* Renamed from .feature-card p */
    color: #64748b;
    font-size: 0.9rem;
    /* Reduced size */
    margin-bottom: 0;
    /* Removed bottom margin since button is gone */
    flex-grow: 1;
  }

  /* Removed .feature-link styles */



  .bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(89, 131, 232, 0.05) 0%, rgba(59, 109, 224, 0.05) 100%);
  }

  .circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
  }

  .circle-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -80px;
  }

  @media (max-width: 768px) {
    .section-header h2 {
      font-size: 2rem;
    }

    .core-feature-card {
      /* Renamed from .feature-card */
      padding: 1.5rem 1.25rem;
      /* Further reduced for mobile */
    }
  }





















  .enhanced-solutions-section {
    /* background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%); */
  }



  /* Improved Filter Design */
  .solution-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
  }

  .filter-container {
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    gap: 5px;
  }

  .filter-option {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
  }

  .filter-option:hover {
    background: rgba(111, 66, 193, 0.05);
  }

  .filter-option.active {
    background: linear-gradient(45deg, #508de6, #02e2d0);
    color: white;
    box-shadow: 0 4px 10px rgba(111, 66, 193, 0.3);
  }

  .filter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .filter-option span {
    font-weight: 500;
    font-size: 14px;
  }

  /* Solution Sections */
  .solution-section {
    background: white;
    /* padding: 40px; */
    margin-bottom: 80px;
    position: relative;
    /* overflow: hidden; */
  }

  .solution-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    border-radius: 10px 0 0 10px;
  }

  .solution-section:hover {
    /* transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  }

  /* Solution Header */


  .solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: rgb(50, 28, 111);
    flex-shrink: 0;
  }

  .solution-info h3 {
    margin-bottom: 10px;
    color: #212529;
  }

  .solution-info p {
    color: #6c757d;
    margin: 0;
    max-width: 600px;
  }

  /* NEW: Pills Container */
  .pills-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    gap: 10px;
    flex-wrap: wrap;
  }

  .control-pill {
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
  }

  .control-pill:hover {
    background: rgba(111, 66, 193, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .control-pill.active {
    background: linear-gradient(45deg, #0C1E7E, #02e2d0);
    color: white;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
    border-color: transparent;
  }

  .control-pill .control-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* background: rgba(13, 110, 253, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #000000;
    transition: all 0.3s ease;
  }

  .control-pill.active .control-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
  }

  .control-pill span {
    font-weight: 500;
    font-size: 14px;
  }

  /*  CUSTOMER SUPPORT - Card Grid */
  .solution-sub-heading {
    border-left: 6px solid #32129a;
    border-radius: 16px;
    padding: 35px 25px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .solution-sub-heading:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }

  .solution-sub-heading h5 {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .cards {
    background: #fff;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
  }

  .cards:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  }

  .cards ion-icon {
    font-size: 28px;
    color: #0C1E7E;
    margin-bottom: 10px;
  }

  .cards h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #212529;
  }

  .cards p {
    margin-bottom: 0;
  }

  /* IT SERVICE - Modern Card UI */
  .it-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }

  .it-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    border-left: 0px solid transparent;
    position: relative;
  }

  .it-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(25, 135, 84, 0.15);
    background: linear-gradient(to right, #f8fff9, #ffffff);
  }

  /* Icon + Heading same line */
  .it-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .it-card-icon {
    font-size: 24px;
    color: #3c64c0;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .it-service-card:hover .it-card-icon {
    transform: scale(1.4);
    color: #3c64c0;
  }

  .it-card-top h4 {
    margin: 0;
    color: #212529;
    font-size: 18px;
    font-weight: 600;
  }

  .it-service-card p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .it-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .it-card-features span {
    background: rgba(184, 202, 194, 0.1);
    color: #45484f;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
  }

  .it-card-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #6c757d;
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
  }

  .it-service-card:hover .it-card-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #0C1E7E;
  }

  /*  BUSINESS - Interactive Dashboard UI */
  .business-dashboard {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .dashboard-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dashboard-visual {
    background: linear-gradient(135deg, #f8fbff, #f0f7ff);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

  }

  .workflow-animation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    position: relative;
  }

  .workflow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    transition: all 0.4s ease;
  }

  .node-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0C1E7E;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
    margin-bottom: 10px;
    transition: all 0.4s ease;
  }

  .workflow-node.active .node-icon {
    background: #0C1E7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
  }

  .workflow-node span {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
  }

  .workflow-node.active span {
    color: #0C1E7E;
    font-weight: 600;
  }

  .workflow-connector {
    flex: 1;
    height: 3px;
    background: #e9ecef;
    position: relative;
    margin: 0 10px;
  }

  .workflow-connector::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #0C1E7E, #67a4ff);
    transition: width 1.5s ease;
  }

  .workflow-animation:hover .workflow-connector::after {
    width: 100%;
  }

  .dashboard-controls {
    display: none;
    /* Hide the original controls */
  }

  .control-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 15px;
    border-left: 0px solid transparent;
  }

  .control-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .control-item.active {
    border-left: 1.5px solid #0C1E7E;
    background: linear-gradient(to right, #f0f7ff, #ffffff);
  }

  .control-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    /* background: rgba(13, 110, 253, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0C1E7E;
    transition: all 0.3s ease;
  }

  .control-item.active .control-icon {
    background: #0C1E7E;
    color: white;
  }

  .control-item span {
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
  }

  .control-item.active span {
    color: #0C1E7E;
  }

  .dashboard-details {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .detail-panel {
    display: none;
    animation: fadeIn 0.5s ease;
  }

  .detail-panel.active {
    display: block;
  }

  .detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .detail-header h4 {
    margin: 0;
    color: #212529;
  }

  .status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
  }

  .status-badge.active {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
  }

  .detail-panel p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .feature-item ion-icon {
    color: #198754;
    font-size: 18px;
  }

  .feature-item span {
    color: #495057;
    font-size: 14px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .stat-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
  }

  .stat-value {
    font-size: 24px;
    font-weight: 600;
    color: #0C1E7E;
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /*  WHATSAPP - Chat UI */
  .chat-container {
    display: flex;
    justify-content: center;
  }

  .chat-window {
    width: 100%;
    max-width: 450px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.15);
  }

  .chat-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #25d366, #6ef7a7);
    color: white;
  }

  .chat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
  }

  .chat-info h4 {
    margin: 0;
    font-size: 18px;
  }

  .status {
    font-size: 13px;
    opacity: 0.8;
  }

  .chat-messages {
    padding: 25px;
    background: #f0f2f5;
    min-height: 200px;
  }

  .message {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: 18px;
    margin-bottom: 15px;
    position: relative;
  }

  .message.received {
    background: white;
    border-bottom-left-radius: 5px;
  }

  .chat-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
  }

  .feature-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    background: white;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .feature-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #25d366;
    color: white;
  }

  .feature-option:hover .feature-icon {
    background: rgba(255, 255, 255, 0.2);
  }

  .feature-option:hover .feature-icon ion-icon {
    color: white;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }

  .feature-icon ion-icon {
    font-size: 20px;
    color: #25d366;
  }

  .feature-option span {
    font-size: 12px;
    text-align: center;
    font-weight: 500;
  }

  .feature-details {
    padding: 25px;
    background: white;
    border-top: 1px solid #eee;
  }

  .detail-content {
    display: none;
  }

  .detail-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }

  .detail-content h4 {
    margin-bottom: 10px;
    color: #212529;
  }

  .detail-content p {
    color: #6c757d;
    margin: 0;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Fade-in animation */
  .fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideIn 1s ease forwards;
  }

  @keyframes fadeSlideIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Filter functionality */
  .solution-section {
    transition: all 0.5s ease;
  }

  .solution-section.hidden {
    display: none;
  }

  /* Responsive adjustments */
  @media (max-width: 992px) {
    .solution-header {
      flex-direction: column;
      text-align: center;
    }

    

    .solution-info {
      text-align: center;
    }

    .dashboard-main {
      grid-template-columns: 1fr;
    }

    .workflow-animation {
      flex-direction: column;
      height: 400px;
    }

    .workflow-connector {
      width: 3px;
      height: 40px;
      margin: 10px 0;
    }

    .workflow-connector::after {
      width: 100%;
      height: 0;
    }

    .workflow-animation:hover .workflow-connector::after {
      height: 100%;
    }

    .feature-list {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .filter-container {
      flex-wrap: wrap;
      justify-content: center;
      border-radius: 16px;
    }

    .filter-option {
      flex: 1;
      min-width: 120px;
      justify-content: center;
    }

    .solution-section {
      /* padding: 30px 20px; */
    }

    .solution-grid {
      grid-template-columns: 1fr;
    }

    .it-service-card {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }

    .it-card-arrow {
      display: none;
    }

    .stats-grid {
      grid-template-columns: 1fr;
    }

    .chat-features {
      grid-template-columns: 1fr;
    }

    .pills-container {
      gap: 8px;
    }

    .control-pill {
      padding: 10px 16px;
      font-size: 13px;
    }

    .control-pill .control-icon {
      width: 20px;
      height: 20px;
      font-size: 12px;
    }
  }

  .solution-info h4 {
    font-size: 2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
  }
















  .wf-spacer {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 20px;
  }

  .wf-spacer h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .wf-spacer p {
    font-size: 1.2rem;
    opacity: 0.9;
  }

  .wf-section {

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 25px 0;

  }

  .wf-container {
    /* background: white; */
    padding: 0px 40px;
    border-radius: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    max-width: 800px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }

  .wf-container.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .wf-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .wf-title h2 {
    font-size: 28px;
    color: #0C1E7E;
    margin-bottom: 10px;
  }

  .wf-title p {
    color: #666;
    font-size: 16px;
  }

  .wf-animation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
  }

  .wf-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    transition: all 0.4s ease;
    opacity: 0.5;
    transform: translateY(10px);
  }

  .wf-node.active {
    opacity: 1;
    /* transform: translateY(0); */
  }

  .wf-node-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0C1E7E;
    /* box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2); */
    margin-bottom: 10px;
    transition: all 0.4s ease;
    position: relative;
  }

  .wf-node.active .wf-node-icon {
    background: #0C1E7E;
    color: white;
    transform: scale(1.1);
    /* box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4); */
  }

  .wf-node span {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
  }

  .wf-node.active span {
    color: #0C1E7E;
    font-weight: 600;
  }

  .wf-connector {
    flex: 1;
    height: 3px;
    background: #e9ecef;
    position: relative;
    margin: 0 10px;
  }

  .wf-connector::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #0C1E7E, #67a4ff);
    transition: width 0.8s ease;
  }

  .wf-connector.active::after {
    width: 100%;
  }

  .wf-status {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: #666;
    height: 20px;
    font-weight: 500;
  }

  .wf-scroll-hint {
    text-align: center;
    margin-top: 30px;
    color: #888;
    font-size: 14px;
    animation: wf-bounce 2s infinite;
  }

  @keyframes wf-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }

    40% {
      transform: translateY(-10px);
    }

    60% {
      transform: translateY(-5px);
    }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .wf-animation {
      flex-direction: column;
      gap: 30px;
    }

    .wf-connector {
      width: 3px;
      height: 40px;
      margin: 0;
    }

    .wf-container {
      padding: 30px 20px;
      margin: 20px;
    }

    .wf-spacer h1 {
      font-size: 2rem;
    }

    .wf-spacer p {
      font-size: 1rem;
    }
  }




















  .customer-support-crm {
    /* background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%); */
  }

  .section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400 !important;
  }

  .section-title h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #212529;
    /* margin-bottom: 1rem; */
    position: relative;
    display: inline-block;
  }

  /* .section-title h2::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #6f42c1, #0d6efd);
      margin: 0.5rem auto 0;
      border-radius: 3px;
    } */

  .section-title p {
    color: #6c757d;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Features Grid */
  .features-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  }

  .features-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .features-header h3 {
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
  }

  .features-header p {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  /* 4 in row */

  /* .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
} */
  .feature-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .feature-item:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #0C1E7E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .feature-item:hover .feature-icon {
    background: #0C1E7E;
    color: white;
    transform: scale(1.1);
  }

  .feature-item span {
    font-weight: 500;
    color: #495057;
    font-size: 15px;
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideIn 0.8s ease forwards;
  }

  @keyframes fadeSlideIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .features-container {
      padding: 25px;
    }

    .features-grid {
      grid-template-columns: 1fr;
    }

    .feature-item {
      padding: 15px;
    }

    .feature-icon {
      width: 45px;
      height: 45px;
      font-size: 18px;
    }
  }





















  .channel-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
  }

  .channel-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 228, 208, 0.05) 0%, rgba(59, 109, 224, 0.05) 100%);
    border-radius: 50%;
    transform: translate(30%, -30%);
  }

  .channel-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(59, 109, 224, 0.05) 0%, rgba(0, 228, 208, 0.05) 100%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
  }

  .channel-section h2 {
    font-weight: bold;
    color: #1e293b;
    font-size: 2rem;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
  }

  .channel-section .lead-text {
    color: #64748b;
    /* font-size: 1.125rem; */
    max-width: 600px;
    margin: 0 auto 3rem;
  }

  .channel-section .channel-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
  }

  .channel-section .channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0C1E7E, #3b6de0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .channel-section .channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .channel-section .channel-card:hover::before {
    transform: scaleX(1);
  }

  .channel-section .channel-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
  }

  .channel-section .channel-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: inherit;
    opacity: 0.2;
  }

  .channel-section .icon-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
  }

  .channel-section .icon-message {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  }

  .channel-section .icon-layer {
    background: linear-gradient(135deg, #f59e0b, #d97706);
  }

  .channel-section .icon-email {
    background: linear-gradient(135deg, #0C1E7E, #3b6de0);
  }

  .channel-section .channel-card h5 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  .channel-section .channel-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* Animation for cards on scroll */
  .channel-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .channel-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .channel-section h2 {
      font-size: 2rem;
    }

    .channel-section .channel-card {
      padding: 2rem 1rem;
      margin-bottom: 1.5rem;
    }

    .channel-section .channel-icon {
      width: 70px;
      height: 70px;
      font-size: 1.75rem;
    }
  }







  button:focus {
    outline: none !important;
    box-shadow: none !important;
  }




  .btn-hover-expand {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  /* Expand & arrow appear on hover */
  .btn-hover-expand:hover {
    padding-right: 42px;
    /* expand from right */
  }

  .btn-hover-expand i {
    position: absolute;
    right: 20px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
  }

  .btn-hover-expand:hover i {
    opacity: 1;
    transform: translateX(0);
  }

  /* ========== Style Variants ========== */
  .btn-filled {
    background: linear-gradient(45deg, #0c1e7e, #02e2d0);
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(12, 30, 126, 0.3);
  }

  .btn-filled:hover {
    box-shadow: 0 6px 14px rgba(12, 30, 126, 0.4);
  }

  .btn-outline {
    background: transparent;
    border: 1px solid #3d4248;
    color: #3d4248;
  }

  .btn-outline:hover {
    background: #0c1d7e00;
    color: #3d4248;
    /* box-shadow: 0 6px 14px rgba(12, 30, 126, 0.4); */
  }


  .simple-animation-btn {
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .simple-animation-btn:hover {
    transform: scale(1.02);
    color: #0C1E7E !important;
    border: 1px solid #0C1E7E !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }