     :root {
       --vs-primary: #1a3a5f;
       --vs-secondary: #2c5f8a;
       --vs-accent: #4ca1af;
       --vs-light: #f8f9fa;
       --vs-dark: #212529;
       --vs-success: #4bb543;
     }

     .vs-header {
       background: linear-gradient(to right, var(--vs-primary), var(--vs-secondary));
       color: white;
       padding: 3rem 0;
       margin-bottom: 3rem;
       border-bottom: 5px solid var(--vs-accent);
       box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     }

     .vs-container {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 15px;
     }

     .vs-section-title {
       color: var(--vs-primary);
       border-left: 5px solid var(--vs-accent);
       padding-left: 15px;
       margin: 2rem 0 1.5rem;
       font-weight: 600;
     }

     .vs-feature-card {
       background: white;
       border-radius: 10px;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
       transition: transform 0.3s, box-shadow 0.3s;
       height: 100%;
       border-top: 4px solid var(--vs-accent);
       overflow: hidden;
     }

     .vs-feature-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
     }

     .vs-card-header {
       background: linear-gradient(to right, var(--vs-primary), var(--vs-secondary));
       color: white;
       padding: 1.2rem;
       text-align: center;
     }

     .vs-card-body {
       padding: 1.5rem;
     }

     .vs-feature-list {
       list-style-type: none;
       padding-left: 0;
     }

     .vs-feature-list li {
       padding: 0.8rem 0;
       border-bottom: 1px solid rgba(0, 0, 0, 0.05);
       display: flex;
       align-items: center;
     }

     .vs-feature-list li:last-child {
       border-bottom: none;
     }

     .vs-feature-list i {
       color: var(--vs-success);
       margin-right: 10px;
       font-size: 1.2rem;
     }

     .vs-comparison-table {
       background: white;
       overflow: hidden;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
       margin-bottom: 3rem;
     }

     .vs-table-header {
       background: linear-gradient(to right, var(--vs-primary), var(--vs-secondary));
       color: white;
       padding: 1.2rem;
       text-align: center;
     }

     .vs-table-header h3 {
       margin: 0;
       font-weight: 600;
     }

     .table th {
       background-color: var(--vs-primary);
       color: white;
       font-weight: 500;
       padding: 10px;
     }

     .vs-table-container {
       overflow-x: auto;
     }

     .tbody tr td {
       padding: 10px;
     }

     .vs-tech-icon {
       font-size: 2.5rem;
       color: var(--vs-accent);
       margin-bottom: 1rem;
     }

     .vs-stat-card {
       background: white;
       border-radius: 10px;
       padding: 1.5rem;
       text-align: center;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
       margin-bottom: 1.5rem;
       border-top: 4px solid var(--vs-accent);
     }

     .vs-stat-value {
       font-size: 2.5rem;
       font-weight: 700;
       color: var(--vs-primary);
       margin: 0.5rem 0;
     }

     .vs-stat-label {
       color: var(--vs-secondary);
       font-weight: 500;
     }

     .vs-footer {
       background: linear-gradient(to right, var(--vs-primary), var(--vs-secondary));
       color: white;
       padding: 2rem 0;
       margin-top: 3rem;
       text-align: center;
     }

     @media (max-width: 768px) {
       .vs-header {
         padding: 2rem 0;
       }

       .vs-stat-value {
         font-size: 2rem;
       }
     }

     .abcolor{
      color: #06396b;
     }
      .text-justify
       {
        text-align: justify;
      }
      .rs-company-overview {
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}
.overview-image-wrapper {
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.4s, box-shadow 0.4s;
}
.overview-image-wrapper:hover .overview-img {
    transform: scale(1.05);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}
.overview-img {
    border-radius: 15px;
    transition: transform 0.4s, box-shadow 0.4s;
}


/* ======== NPD Section ======== */
.npd-section {
  padding: 90px 0;
}

/* ======== Title ======== */
.npd-title {
  text-align: center;
  margin-bottom: 70px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.npd-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f2167;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
}
.npd-title h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #1e40af;
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}
.npd-title p {
  color: #374151;
  font-size: 18px;
  margin-top: 20px;
  line-height: 1.8;
}

/* ======== Card Layout ======== */
.npd-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  gap: 35px;
}

/* Responsive: For mobile view, show 1 card per row */
@media (max-width: 768px) {
  .npd-cards {
    grid-template-columns: 1fr; /* 1 card per row on small screens */
  }
}
.npd-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 20px 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.npd-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 12px 28px rgba(30, 64, 175, 0.2);
}

/* ======== Card Icon ======== */
.npd-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 38px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}
.npd-card:hover .npd-icon {
  transform: rotateY(360deg);
}

/* ======== Card Text ======== */
.npd-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
}
.npd-card p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
  padding: 0 10px;
}

/* ======== List Styling ======== */
.npd-card ul {
  text-align: left;
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.npd-card ul li {
  color: #4b5563;
  font-size: 15.5px;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.npd-card ul li::before {
  content: "•";
  color: #2563eb;
  font-weight: bold;
  font-size: 18px;
}

/* ======== Highlight Section ======== */
.npd-highlight {
  margin-top: 70px;
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  border-radius: 16px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.1);
  animation: fadeInUp 0.8s ease;
}
.npd-highlight h4 {
  font-weight: 700;
  color: #0f2167;
  font-size: 26px;
  margin-bottom: 20px;
}
.npd-highlight p {
  color: #1e293b;
  font-size: 17px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 25px;
}

/* Highlight Icons Row */
.npd-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.npd-icons .icon-box {
  background: #fff;
  border-radius: 14px;
  padding: 18px 25px;
  min-width: 230px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}
.npd-icons .icon-box i {
  color: #2563eb;
  font-size: 24px;
}
.npd-icons .icon-box span {
  font-weight: 600;
  color: #0f172a;
}
.npd-icons .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(30, 64, 175, 0.15);
}

/* ======== Animations ======== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======== Responsive ======== */
@media (max-width: 768px) {
  .npd-title h2 { font-size: 28px; }
  .npd-title p { font-size: 15px; }
  .npd-card h4 { font-size: 18px; }
  .npd-highlight h4 { font-size: 22px; }
}
