
    :root {
      --primary: #4e40a5;
      --text-dark: #0f172a;
      --text-muted: #64748b;
      --bg-light: #f8fafc;
      --radius: 12px;
      --muted: 210 40% 96.1%;
      --color-green-500 : oklch(72.3% .219 149.579);
      --primary-heightlight: #4e40a5;
    }

    body {
      font-family: 'Space Grotesk', sans-serif;
      background: url('https://images.unsplash.com/photo-1551836022-c6e8e79e7f6b?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
      min-height: 100vh;

      /* margin: 0; */
      /* padding-top: 70px; */
    }

    .backgroundblue {
      background-color: color-mix(in oklab, #2563EB 5%, transparent);


    }

    .sideimg {
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    section {
      background: #f1f5f9;
    }
    .firstsection{
        padding-top:80px !important;

    }
    p{
        font-size: 16px;
    }
    .padding-theme {
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .font-16 {
      font-size: 16px;
    }

    .font-14 {
      font-size: 14px;
    }

    .font-12 {
      font-size: 12px;
    }

    .font-10 {
      font-size: 10px;
    }

    /* Blurred Navbar */
    .navbar-blur {
      /*background-color: rgba(255, 255, 255, 0.15);*/
      /*backdrop-filter: blur(10px);*/
      /*-webkit-backdrop-filter: blur(10px);*/
      /*border-bottom: 1px solid rgba(255, 255, 255, 0.3);*/
      /*position: fixed;*/
      /*width: 100%;*/
      /*z-index: 1030;*/
      /*color: #66768d;*/
          background-color: #ffffffc4;
            backdrop-filter: blur(134px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgb(150 156 233 / 30%);
            position: fixed;
            width: 100%;
            z-index: 1030;
            color: #66768d;
            }
            
    /* Hero section */
    .hero {
      background-image: url('https://custom-flow--salemetasource.replit.app/assets/cnc_milling_machine_in_action_with_blue_lighting-DNkYuTC7.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: white;
      /* better contrast on image */
      /* max-width: 900px; */
      /* margin: 2rem auto; */
      color: #111;
      /* background: rgba(255, 255, 255, 0.85); */
      padding: 3rem 2rem;
      border-radius: 0.5rem;
      box-shadow: 0 0 30px rgb(0 0 0 / 0.1);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      /*background: linear-gradient(to right,*/
      /*    rgba(255, 255, 255, 1) 0%,*/
      /*    rgba(255, 255, 255, 0.7) 40%,*/
      /*    rgba(255, 255, 255, 0.3) 100%);*/
      background: linear-gradient(107deg, rgb(0 0 0 / 95%) 0%, rgb(0 24 59 / 10%) 50%, rgb(226 230 235 / 0%) 100%);
      z-index: 0;
    }

    .hero>* {
      position: relative;
      z-index: 1;
    }

    .bannercontent {
      margin: 2rem 0;
    }

    .hero h1 {
      font-weight: 900;
      font-size: 4rem;
    }

    .hero h1 .highlight {
      color: var(--primary-heightlight);
      /* bright blue */
    }
    .highlight {
      color: var(--primary-heightlight);
      
    }
    .hero p {
      font-size: 1.125rem;
      margin-top: 1rem;
      color: #555;
    }
    p{
        font-size:0.8rem;
    }
    ul li{
     font-size:0.9rem;   
    }
    .aboveheading {
      border: 1px solid white;
      border-radius: 50px;
      padding: 5px 10px;
      width: fit-content;
      margin-top: 50px;
      text-transform: uppercase;
    }

    @keyframes opacity-animation {
      0% {
        opacity: 0;
      }
    }

    @keyframes pulse-animation {
      0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
      }

      70% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3);
      }

      to {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
      }
    }

    .pulse:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      background: #4e40a5;
      border-radius: 100%;
      opacity: 0.5;
      transform: translate(-50%, -50%) scale(3);
      animation: pulse-animation 3s infinite;
    }

    .pulse {
      position: relative;
      display: inline-block;
      vertical-align: 1px;
      width: 8px;
      height: 8px;
      margin: 0 6px;
      background: #ffdd40;
      color: transparent;
      border-radius: 100%;
      flex: 0 0 auto;
      animation: opacity-animation 1s linear;
    }

    .pulse.red {
      background: #4e40a5;
    }

    .aboveheading p {
      padding-bottom: 0;
      margin-bottom: 0;
      margin-top: 0;
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
    }

    .btn-primary {
      background-color: #4e40a5;
      border: 1px solid white;
        box-shadow: 1px 3px 11px #6456bb;
      transition: transform 0.4s ease;
    }

    .btn-primary:hover {
      background-color: #4e40a5;
      transform: scale(1.05);
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: 2rem;
      }
    }

    .bannercontent {
      display: grid;
      justify-content: space-evenly;
      min-height: 100px;
    }

    .bannerbuttons {
      display: flex;
    }

    .btn-outline-secondary {
      background-color: #f8fafc;
    }

    /* section 2 */
    .badge {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      font-size: 0.75rem;
      font-weight: 500;
      color: #2563eb;
      border: 1px solid #bfdbfe;
      border-radius: 6px;
      margin-bottom: 1rem;
    }

    .capabilities {
      max-width: 600px
    }

    .capabilities h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      margin: 0.5rem 0;
    }

    .capabilities p {
      font-size: 1.125rem;
      color: #475569;
    }

    .service-card {
      font-size: 14px;
      /* width: 360px; */
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    }

    /* Image container */
    .card-image {
      overflow: hidden;
      height: 220px;
    }

    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    /* Zoom effect */
    .service-card:hover .card-image img {
      transform: scale(1.1);
    }

    /* Content */
    .card-content {
      padding: 1.5rem;
    }

    .icon {
      width: 36px;
      height: 36px;
      background: #e0edff;
      color: #2563eb;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      margin-bottom: 0.75rem;
      font-size: 1.1rem;
    }

    .card-content h3 {
      margin: 0.5rem 0;
      font-size: 0.9rem;
      font-weight: 700;
    }

    .card-content p {
      font-size: 0.8rem;
      color: #475569;
      margin-bottom: 1rem;
    }

    .card-content ul {
      padding-left: 1.1rem;
      margin: 0 0 1.25rem;
      color: #334155;
    }

    .card-content ul li {
      margin-bottom: 0.4rem;
      font-size: 0.8rem;
    }

    .cta {
      font-weight: 600;
      color: #2563eb;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }

    .cta:hover {
      text-decoration: underline;
    }

    /* section2 */
    /* section 3 */
    .icon-box {
      width: 40px;
      height: 40px;
      padding: 10px;
      background: #eaf1ff;
      color: #2563eb;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    }

    /* section 3 */
    /* section 4 */
    .step-card {
      transition: all 0.3s ease;
    }

    .step-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: #fff;
      margin: 0 auto 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .step-card:hover .step-icon {
      transform: translateY(-10px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .step-label {
      font-size: 12px;
      font-weight: 600;
      color: #3b82f6;
      letter-spacing: 1px;
    }

    .step-text {
      font-size: 14px;
      color: #6c757d;
    }

    /* secftion4 */
    /* section 5 */
    .sop-table-wrapper {
      overflow-x: auto;
    }

    .sop-table th {
      font-size: 13px;
      text-transform: uppercase;
      color: #6b7280;
      white-space: nowrap;
    }

    .sop-table td {
      vertical-align: middle;
      font-size: 14px;
    }

    /* Scroll animation */
    .animate-row {
      opacity: 0;
      transform: translateX(-60px);
      transition: all 0.6s ease-out;
    }

    .animate-row.show {
      opacity: 1;
      transform: translateX(0);
    }

    .stage-badge {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: #eef2ff;
      color: #3b82f6;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }

    .status-pill {
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 20px;
      background: #f1f5f9;
      color: #334155;
      white-space: nowrap;
    }

    /* section 5 */
    /* animation*/


    .slide-up {
      opacity: 0;
      transform: translateY(60px);
      transition: all 0.8s ease-out;
    }

    .slide-up.active {
      opacity: 1;
      transform: translateY(0);
    }

    .scroll-up:nth-child(1) {
      transition-delay: 0.1s;
    }

    /* animation */


    /* new section */
    /* ===== HERO SECTION ===== */
    .ms-hero-section {
      padding: 80px 0;
    }

    /* Badge */
    .ms-ai-badge {
      background: #e8f0ff;
      color: #2563eb;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 6px;
    }

    /* Headings */
    .ms-hero-section h1 {
      font-weight: 700;
      color: #0f172a;
    }

    /* Text */
    .ms-hero-section p {
      color: #64748b;
    }

    /* Feature Cards */
    .ms-feature-card {
      border: 1px solid #e2e8f0;
      background: transparent;
      border-radius: 14px;
      text-align: left;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
      transition: transform .4s ease, box-shadow .4s ease;
    }

    .ms-feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    }

    .ms-feature-card h6 {
      font-size: 14px;
      font-weight: 600;
    }

    .ms-feature-card strong {
      font-size: 10px;
      font-weight: 500;
    }

    /* Icon Box */
    .ms-feature-icon {
      width: 45px;
      height: 45px;
      background: #e8f0ff;
      color: #2563eb;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    /* Image Wrapper */
    .ms-image-wrapper {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      animation: ms-slide-in 1.2s ease forwards;
    }

    .ms-image-wrapper img {
      width: 100%;
      height: auto;
    }

    /* Floating Status */
    .ms-status-indicator {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: #ffffff;
      padding: 10px 16px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
      font-size: 14px;
    }

    /* Animation */
    @keyframes ms-slide-in {
      from {
        opacity: 0;
        transform: translateX(40px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .ms-image-card {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    }

    /* Image */
    .ms-image-card img {
      width: 100%;
      display: block;
      filter: grayscale(10%) contrast(1.05);
    }

    /* Front content panel */
    .ms-front-panel {
      position: absolute;
      bottom: 18px;
      left: 18px;
      right: 18px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      padding: 16px 20px;
      border-radius: 16px;

      background: linear-gradient(to right,
          rgba(255, 255, 255, 0.85),
          rgba(255, 255, 255, 0.65));

      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);

      box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, .6);
    }

    /* Label text */
    .ms-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: #2563eb;
    }

    /* Status badge */
    .ms-status-badge {
      background: #22c55e;
      color: #ffffff;
      font-size: 11px;
      font-weight: 700;
      padding: 6px 10px;
      border-radius: 6px;
      box-shadow: 0 4px 10px rgba(34, 197, 94, 0.5);
    }

    .ms-feature-section {
      background: #f8fbff;
    }

    /* Card */
    .ms-info-card {
      background: #ffffff;
      border-radius: 14px;
      padding: 28px;
      border: 1px solid #e6ecf5;
      transition: all .35s ease;
    }

    /* Hover */
    .ms-info-card:hover {
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
      transform: translateY(-6px);
    }

    /* Icon box */
    .ms-icon-box {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      background: #e8f0ff;
      color: #2563eb;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 18px;
    }

    /* Title */
    .ms-card-title {
      font-weight: 600;
      margin-bottom: 12px;
      color: #0f172a;
    }

    /* Text */
    .ms-card-text {
      font-size: 14px;
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    /* Learn more link */
    .ms-learn-link {
      display: block;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
      color: #0f172a;
      text-decoration: none;
      border: 1px solid var(--primary-heightlight);
      ;
      padding: 8px 16px;
      border-radius: 6px;
      text-align: center;
      transition: all .3s ease;
    }

    .ms-learn-link:hover {
      background: var(--primary-heightlight);
      ;
      color: #ffffff;
    }

    .ms-css-zoom {
      opacity: 0;
      transform: scale(0.9) translateY(50px);

      animation-name: ms-zoom-in;
      animation-duration: 2.5s;
      /* slow animation */
      animation-delay: 2s;
      /* 2 sec delay */
      animation-fill-mode: both;
      /* animation-timing-function: cubic-bezier(.16,1,.3,1); */
      animation-timing-function: cubic-bezier(0.12, 0.8, 0.2, 1);
      animation-timeline: view();
      animation-range: entry 10% cover 45%;
    }

    /* Keyframes */
    @keyframes ms-zoom-in {
      0% {
        opacity: 0;
        transform: scale(0.9) translateY(50px);
      }

      100% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .supplychain .card-body:hover {
      border: 1px solid rgb(115, 115, 228);
      border-radius: 6px;
    }

    /* new section */
    /* 4 cards order*/
    .ms-adv-section {
  background-color: #f8f9fa;
}

.ms-adv-wrapper {
  background: radial-gradient(circle at top, #0d1b3d, #050b1f);
  border-radius: 24px;
}

.ms-adv-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #fff;
  padding:0px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ms-adv-card .card-body{
  padding:10px
}
.ms-adv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* SVG ICON CENTERING */
.ms-adv-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.ms-adv-icon svg {
  width: 28px;
  height: 28px;
}

.ms-adv-card p {
  color: #aeb6d3;
  margin-bottom: 0;
}

    