.tech_landscape_container {
  padding: 0 3.5%; /* Match heading padding */
  padding-bottom: 80px; 
  position: relative;
  width: 100%;

  /* Reset global star selector background inside this container if needed */
  * {
    background-color: transparent !important;
  }

  #tech-landscape-root {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .tech-row {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.04); 
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(5px);
    
    // Hidden initially for GSAP
    opacity: 0;
    visibility: hidden;

    &:hover {
      transform: translateY(-4px) scale(1.01);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(146, 39, 143, 0.4);
    }
  }

  .tech-category {
    width: 330px;
    padding: 20px 25px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 15px;
    background: linear-gradient(90deg, rgba(146, 39, 143, 0.6) 0%, rgba(146, 39, 143, 0.1) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset -2px 0 10px rgba(0,0,0,0.2);
  }

  .tech-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    padding: 15px 25px;
    flex-grow: 1;
  }

  .tech-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 65px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
    cursor: pointer;
    filter: grayscale(20%);
    
    &:hover {
      transform: scale(1.15);
      filter: grayscale(0%) drop-shadow(0 0 10px rgba(255,255,255,0.2));
    }

    img {
      max-height: 36px;
      max-width: 120px;
      width: auto;
      height: auto;
      border-radius: 0;
      object-fit: contain;

      &.grey-logo {
        filter: brightness(0) invert(0.6) !important;
      }
    }

    .tech-logo-text {
      font-weight: 700;
      font-size: 1.2rem;
      color: #eaeaea;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);

      &.grey-text-logo {
        color: #999999 !important;
      }
    }

    img.dotnet-crop {
      width: 45px !important;
      height: 45px !important;
      object-fit: cover !important;
      object-position: left center !important;
      margin-right: 8px;
    }
  }

  @media (max-width: 991px) {
    .tech-row {
      flex-direction: column;
    }
    .tech-category {
      width: 100%;
      margin-right: 0;
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      background: linear-gradient(180deg, rgba(146, 39, 143, 0.6) 0%, rgba(146, 39, 143, 0.1) 100%);
    }
    .tech-logos {
      padding: 20px;
    }
  }
}
