    .value-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    }

    .icon-circle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #0E977F 0%, #12b394 100%);
      color: #fff;
      font-size: 1.5rem;
      margin-bottom: 1rem;
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .value-card:hover .icon-circle {
      transform: rotate(15deg) scale(1.1);
      filter: brightness(1.1);
    }

    .intro-section {
      background: linear-gradient(135deg, #f4f7fa, #ffffff);
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
    }

    .intro-section::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: rgba(0, 255, 136, 0.05);
      border-radius: 50%;
      z-index: 0;
    }

    .intro-content {
      max-width: 900px;
      margin: auto;
      position: relative;
      z-index: 1;
    }

    .intro-heading {
      font-size: 2.8rem;
      font-weight: 700;
      background: linear-gradient(to right, #007bff, #6610f2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
      animation: fadeInDown 1s ease;
    }

    /* .intro-paragraph {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.8;
    animation: fadeInUp 1.5s ease;
  } */

    .mission-box {
      background-color: #f8faf9;
      padding: 30px;
      border-left: 4px solid #0E977F;
      font-style: italic;
      font-weight: 500;
      animation: fadeInUp 2s ease;
    }

    .card-title {
      font-size: 24px !important;
    }

    .contact-hero-section {
      background: linear-gradient(135deg, #eef4fa 0%, #f8fcff 100%);
      color: #2c3e50;
      position: relative;
      overflow: hidden;
    }

    .contact-hero-section::before {
      content: '';
      position: absolute;
      top: -80px;
      left: -80px;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, #d0ebff 0%, transparent 70%);
      opacity: 0.3;
      z-index: 0;
    }

    .section-title {
      font-size: 2.75rem;
      position: relative;
      display: inline-block;
      z-index: 1;
    }

    /* .get-in-touch-title::after {
  content: '';
  display: block;
  height: 4px;
  width: 80px;
  margin: 12px auto 0;
  background: #007bff;
  border-radius: 4px;
} */

    .highlight-box {
      background-color: #ffffff;
      border-left: 5px solid #007bff;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      color: #1a1a1a;
    }

    .highlight-link {
      color: #007bff;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .section-card {
      margin-bottom: 2rem;
      border-left: 5px solid #0E977F;
      background-color: #fff;
    }

    .zoom-image-container {
      overflow: hidden;
      /* hide the overflow of the image */
    }

    .zoom-image {
      transition: transform 0.4s ease;
      transform: scale(1);
      /* normal scale */
    }

    .zoom-image-container:hover .zoom-image {
      transform: scale(1.1);
      /* zoom in on hover */
    }

    .blog-title {
      cursor: pointer !important;
    }

    .blog-title:hover {
      text-decoration: underline !important;
    }

    /* .highlight-link:hover {
  color: #0056b3;
  text-decoration: underline;
} */

    .text-dark-emphasis {
      color: #1d1d1f;
    }

    .blog-subtitle {
      font-size: 1.5rem;
      color: #555;
    }

    .section-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-top: 2rem;
      margin-bottom: 0.5rem;
    }

    .feature-list {
      padding-left: 1.2rem;
    }


    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .sticky-nav {
      position: sticky;
      top: 80px;
    }

    .section-card {
      margin-bottom: 2rem;
      border-left: 5px solid #0E977F;
      padding-left: 1rem;
    }

    .scrollspy-example {
      max-height: 85vh;
      overflow-y: auto;
      padding-right: 1rem;
    }

    .content-header {
      font-size: 1.5rem;
      font-weight: 600;
    }

    .content-heading{
        font-size: 1.4rem;
        font-weight: 600;
    }

    .content-sub {
      font-size: 1.1rem;
      font-weight: 500;
    }

    #scrollable-content {
      scrollbar-width: none;
      /* Firefox */
      -ms-overflow-style: none;
      /* IE and Edge */
    }

    #scrollable-content::-webkit-scrollbar {
      display: none;
      /* Chrome, Safari, Opera */
    }

    .table-container {
      width: 100%;
      overflow-x: auto;
    }

    table {
      border-collapse: collapse;
      width: 100%;
      min-width: 600px;
      /* Prevent table from being squished too much */
    }

    th,
    td {
      border: 1px solid rgb(148, 148, 148);
      padding: 8px;
      text-align: left;
    }

    th {
      background-color: #f2f2f2;
    }

    .copy-btn,
    .download-btn {
      display: none;
    }
