.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .navbar-logo {
    max-width: 250px;
    height: auto;
    transition: all 0.3s ease;
  }

  .nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
  }

  .nav-link:hover {
    color: #007bff;
  }

  .btn-order-now {
    padding: 0.5rem 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
  }

  .btn-order-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }

  @media (max-width: 991px) {
    .navbar-logo {
      max-height: 500px;
    }
  }

  @media (min-width: 992px) {
    .navbar {
      padding-top: 1rem;
      padding-bottom: 1rem;
    }

    .nav-link {
      margin-left: 1rem;
      margin-right: 1rem;
    }
  }


.hero-section {
    background-image: url('../images/background_jumpstart_2.svg');
    background-size: cover;
    background-position: center;
    width: 100vw; 
    min-height: 100vh; 
    margin: 0; 
    padding: 0;
    display: flex;
    align-items: center;
  }

  .hero-content {
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
  }

  .hero-image {
    transition: all 0.3s ease;
  }

  .hero-title {
    font-size: calc(0.25rem + 1vw);
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .hero-text {
    font-size: calc(0.25rem + 0.5vw);
  }

  @media (min-width: 992px) {
    .hero-content {
      padding: 3rem;
    }

    .hero-image {
      transform: scale(1.05);
    }
  }

  @media (max-width: 991px) {
    .hero-content {
      text-align: center;
    }
  }

  .btn {
    transition: all 0.3s ease;
  }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .carousel-item {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .carousel-item.active {
    opacity: 1;
  }

  .card {
    transition: all 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .report-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
  }

  .report-card .card-body {
    padding: 2rem;
  }

  .report-card .card-title {
    color: #007bff;
    font-weight: bold;
  }

  .report-card .btn {
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .alert {
    border-radius: 15px;
  }

  .alert-link {
    font-weight: bold;
    text-decoration: underline;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0.5;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in-up {
    animation: fadeInUp 0.5s ease-out;
  }

  .report-master {
    background-image: url('../images/section_backgrond.jpg');
    background-size: cover;
    background-position: center;
  }

  .report-section {
    display: flex;
    flex-direction: column; /* Ensure container takes up full height */
    min-height: 350px;
}

.report-container {
    flex-grow: 1; /* Allow container to expand to fill available space */
    overflow-y: auto;
}

  .report-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }