/* Scroll Section Layout */
.scroll-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding: 4rem 8rem;
    background: #0b0c10;
    align-items: flex-start;
  }
  
  .scroll-left-box {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
  }
  
  .scroll-left-box h2 {
font-size: 2.5rem;
    margin-bottom: 25px;
    color: #66fcf1;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
    
  }
  .scroll-left-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #66fcf1;
    border-radius: 2px;
}
  
  .scroll-left-box p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #d6d1d1;
  }
  
  .scroll-left-box button {
    background-color: black;
    color: white;
    padding: 12px 20px;
    border: 2px solid #66fcf1;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .scroll-left-box button:hover {
    background-color: #004dcc;
  }
  
  .scroll-right-box {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    position: relative;
  }
  
  .scroll-line-track {
    width: 6px;
    height: 100%;
    background: #e0e0e0;
    position: absolute;
    top: 0;
    left: -20px;
    border-radius: 3px;
  }
  
  .scroll-line-fill {
    width: 100%;
    background: #66fcf1;
    height: 0%;
    border-radius: 3px;
    transition: height 0.2s ease;
  }
  
  .scrollable-content {
    max-height: 400px;
    overflow-y: auto;
    background: linear-gradient(135deg, #0b0c10 0%, #1f2833 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(102, 252, 241, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  .scrollable-content::-webkit-scrollbar {
    display: none;
  }
  
  .scroll-item {
    margin-bottom: 2rem;
  }
  
  .scroll-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #66fcf1;
  }
  
  .scroll-item p {
    font-size: 1rem;
    color: white;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .scroll-section {
      flex-direction: column;
    }
  
    .scroll-line-track {
      left: -10px;
    }
    .scroll-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding: 4rem 2rem;
        background: #0b0c10;
        align-items: flex-start;
      }
  }
  