    .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, #6c5ce7 0%, #a29bfe 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, 123, 255, 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: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #007bff;
    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 #0d6efd;
  background-color: #fff;
}

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

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


  @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 #0d6efd;
      padding-left: 1rem;
    }
    .scrollspy-example {
      max-height: 85vh;
      overflow-y: auto;
      padding-right: 1rem;
    }
    .content-header {
      font-size: 1.5rem;
      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;
    }